computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
820 B
28 lines
820 B
4 years ago
|
import { Box, Container } from '@chakra-ui/react';
|
||
|
import { Header } from '../../components/header';
|
||
|
import { OpensourceBanner } from '../../components/opensource-banner';
|
||
|
import { UpdatesBanner } from '../../components/updates-banner';
|
||
|
import { Footer } from '../../components/footer';
|
||
|
import { GuideHeader } from '../../components/guide-header';
|
||
|
|
||
|
export default function Guide() {
|
||
|
return (
|
||
|
<Box bg='white' minH='100vh'>
|
||
|
<Header />
|
||
|
<Box mb='60px'>
|
||
|
<GuideHeader
|
||
|
title={'Build it and they will come?'}
|
||
|
subtitle={'Why “build it and they will come” alone won’t work anymore'}
|
||
|
/>
|
||
|
<Container maxW={'container.md'} position='relative'>
|
||
|
|
||
|
</Container>
|
||
|
</Box>
|
||
|
|
||
|
<OpensourceBanner />
|
||
|
<UpdatesBanner />
|
||
|
<Footer />
|
||
|
</Box>
|
||
|
);
|
||
|
}
|