From c6dff9efdee4c5530f067f85590203ae6dcd78c6 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Sun, 10 Nov 2019 21:21:39 +0400 Subject: [PATCH] Add signup page --- pages/signup.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/signup.js diff --git a/pages/signup.js b/pages/signup.js new file mode 100644 index 000000000..5a45c77e2 --- /dev/null +++ b/pages/signup.js @@ -0,0 +1,20 @@ +import DefaultLayout from 'layouts/default'; +import PageFooter from 'components/page-footer'; +import SiteNav from 'components/site-nav'; + +const SignUp = () => ( + + +
+
+

Sign Up

+

You have caught us before we are ready, enter your email below and we will notify you once you are in

+ + +
+
+ +
+); + +export default SignUp;