2019-11-10 21:21:39 +04:00
|
|
|
import DefaultLayout from 'layouts/default';
|
|
|
|
import PageFooter from 'components/page-footer';
|
|
|
|
import SiteNav from 'components/site-nav';
|
2019-11-13 21:30:04 +04:00
|
|
|
import SignUpForm from 'components/signup-form';
|
2019-12-03 17:54:34 +04:00
|
|
|
import Helmet from 'components/helmet';
|
2019-11-10 21:21:39 +04:00
|
|
|
|
|
|
|
const SignUp = () => (
|
|
|
|
<DefaultLayout>
|
2020-01-29 10:42:52 +05:00
|
|
|
<Helmet title={'Sign Up: Be a part of the community'} />
|
2019-11-10 21:21:39 +04:00
|
|
|
<SiteNav />
|
2019-11-12 21:01:23 +04:00
|
|
|
<SignUpForm />
|
2019-11-10 21:21:39 +04:00
|
|
|
<PageFooter />
|
|
|
|
</DefaultLayout>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default SignUp;
|