From 101aed8257f6a7f2099e337b2d0db45d5570e55e Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Tue, 24 Aug 2021 16:35:23 +0200 Subject: [PATCH] Add sign up page --- pages/signup.tsx | 88 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 pages/signup.tsx diff --git a/pages/signup.tsx b/pages/signup.tsx new file mode 100644 index 000000000..dc0f8920c --- /dev/null +++ b/pages/signup.tsx @@ -0,0 +1,88 @@ +import React from 'react'; +import { + Box, + Container, + Heading, + Text, + SimpleGrid, + Input, + Button, + ListItem, + List, + ListIcon, + Link +} from '@chakra-ui/react'; +import { GlobalHeader } from '../components/global-header'; +import { OpensourceBanner } from '../components/opensource-banner'; +import { UpdatesBanner } from '../components/updates-banner'; +import { Footer } from '../components/footer'; +import { CheckCircleIcon } from '@chakra-ui/icons'; + +export default function SignUp() { + return ( + + + + + + + + Monthly Updates + Enter your email below to get notified about the new + roadmaps, guides and updates + + + + + Once a month email about the changes to roadmaps, new roadmaps, free guides and + videos. + + + + + Updates and Paid Content + People sponsoring me on GitHub get access to the updates + as well as paid content. + + + + + Get notified about the updates + + + + Access to paid guides and Videos + + + + Support the Project + + + + Get a shoutout on Twitter + + + + Your name will be added to Thanks + + + + Sponsor + on GitHub + + + + + + + +