feat: landing (#7) #21

Merged
primakov merged 11 commits from feat/landing into main 2024-11-10 11:50:20 +03:00
Showing only changes of commit d713f074d9 - Show all commits

View File

@ -1,7 +1,37 @@
import React from "react";
import React, { FC } from 'react';
import { Box, Container, VStack } from '@chakra-ui/react';
import {
BenefitsSection,
Footer,
HeroSection,
SocialProofSection,
} from '../../components/landing';
import { LandingThemeProvider } from '../../containers';
const Page = () => {
return <h1>Landing</h1>;
const Page: FC = () => {
return (
<LandingThemeProvider>
<Container
w='full'
maxWidth='container.xl'
minH='100vh'
padding={0}
bg='white'
centerContent
>
<VStack w='full' h='full' alignItems='stretch'>
<HeroSection flexShrink={0} />
<Box flexGrow={1}>
<VStack as='main'>
<BenefitsSection />
<SocialProofSection />
</VStack>
</Box>
<Footer />
</VStack>
</Container>
</LandingThemeProvider>
);
};
export default Page;