Add guide header and guide page

This commit is contained in:
Kamran Ahmed
2021-08-20 15:49:34 +02:00
parent 4737dd8390
commit a85497d7e7
2 changed files with 57 additions and 0 deletions

27
pages/guides/[guide].tsx Normal file
View File

@ -0,0 +1,27 @@
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 wont work anymore'}
/>
<Container maxW={'container.md'} position='relative'>
</Container>
</Box>
<OpensourceBanner />
<UpdatesBanner />
<Footer />
</Box>
);
}