aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/screenshots.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/pages/instant/screenshots.tsx')
-rw-r--r--packages/website/ts/pages/instant/screenshots.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/website/ts/pages/instant/screenshots.tsx b/packages/website/ts/pages/instant/screenshots.tsx
new file mode 100644
index 000000000..672cdef59
--- /dev/null
+++ b/packages/website/ts/pages/instant/screenshots.tsx
@@ -0,0 +1,15 @@
+import * as React from 'react';
+
+import { Container } from 'ts/components/ui/container';
+import { colors } from 'ts/style/colors';
+
+export const Screenshots = () => (
+ <Container backgroundColor={colors.instantBackground} className="py3 flex justify-center">
+ <img className="px1" width="300px" height="420px" src="images/instant/snt_screenshot.png" />
+ <img className="px1" width="300px" height="420px" src="images/instant/omg_screenshot.png" />
+ <img className="px1" width="300px" height="420px" src="images/instant/kitty_screenshot.png" />
+ <img className="px1" width="300px" height="420px" src="images/instant/bat_screenshot.png" />
+ <img className="px1" width="300px" height="420px" src="images/instant/leroy_screenshot.png" />
+ <img className="px1" width="300px" height="420px" src="images/instant/mkr_screenshot.png" />
+ </Container>
+);