import React from 'react';
import { Box, Button, Container, Heading, Input, Link, List, ListIcon, ListItem, Text } from '@chakra-ui/react';
import { GlobalHeader } from '../components/global-header';
import { OpensourceBanner } from '../components/opensource-banner';
import { Footer } from '../components/footer';
import { CheckCircleIcon } from '@chakra-ui/icons';
import siteConfig from '../content/site.json';
import Helmet from '../components/helmet';
function FreeSignUp() {
return (
Monthly UpdatesEnter your email below to get notified about the new
roadmaps, guides and updatesOnce a month email about the changes to roadmaps, new roadmaps, free guides and
videos.
);
}
function PaidSignUp() {
return (
Updates and Paid ContentPeople 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
);
}
export default function SignUp() {
return (
);
}