aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/screenshots.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-11-27 16:49:49 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-11-29 02:59:54 +0800
commit6c43fa8f7253083bb5e50a3f8940f35d105c8bf1 (patch)
treea37599f231af9533e773c1419c91bfac8fe8debb /packages/website/ts/pages/instant/screenshots.tsx
parent8a4e5dfb68852f11275eea7dd24cc442740a2332 (diff)
downloaddexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar.gz
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar.bz2
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar.lz
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar.xz
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.tar.zst
dexon-sol-tools-6c43fa8f7253083bb5e50a3f8940f35d105c8bf1.zip
feat(website): add screenshots to instant page
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>
+);