diff --git a/src/pages/landing/index.tsx b/src/pages/landing/index.tsx index 96ee58e..1097a50 100644 --- a/src/pages/landing/index.tsx +++ b/src/pages/landing/index.tsx @@ -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

Landing

; +const Page: FC = () => { + return ( + + + + + + + + + + +