diff --git a/packages/web/components/Landing/sections/Frontier.tsx b/packages/web/components/Landing/sections/Frontier.tsx index d8e438a4..a534bd81 100644 --- a/packages/web/components/Landing/sections/Frontier.tsx +++ b/packages/web/components/Landing/sections/Frontier.tsx @@ -2,12 +2,12 @@ import { Container, Box, Text, - - } from "@chakra-ui/react" - import BackgroundImage from 'assets/landing/frontier-background.png' - - - + +} from "@chakra-ui/react" +import BackgroundImage from 'assets/landing/frontier-background.png' + + + function Frontier() { return ( - + Many have already woken up to the world-shaping potential of Web3 technologies. - Some are grabbing the opportunity to build the future they want to live in. + Some are grabbing the opportunity to build the future they want to live in. ); } - export default Frontier; \ No newline at end of file diff --git a/packages/web/pages/landing.tsx b/packages/web/pages/landing.tsx index 66428cdd..b5df7681 100644 --- a/packages/web/pages/landing.tsx +++ b/packages/web/pages/landing.tsx @@ -1,35 +1,37 @@ import React from 'react'; -import Intro from '../components/Landing/sections/Intro'; -import Game from '../components/Landing/sections/Game'; -import Build from '../components/Landing/sections/Build'; -import Revolution from '../components/Landing/sections/Revolution'; -import WildWeb from '../components/Landing/sections/WildWeb'; -import Frontier from '../components/Landing/sections/Frontier'; -import Together from '../components/Landing/sections/Together'; -import WhatWeDo from '../components/Landing/sections/WhatWeDo'; -import Optimal from '../components/Landing/sections/Optimal'; -import Unplug from '../components/Landing/sections/Unplug'; -import Who from '../components/Landing/sections/Who'; -import JustWatch from '../components/Landing/sections/JustWatch'; -import Cards from '../components/Landing/sections/Cards'; - -function Landing(): JSX.Element { - return
+import Build from '../components/Landing/Sections/Build'; +import Cards from '../components/Landing/Sections/Cards'; +import Frontier from '../components/Landing/Sections/Frontier'; +import Game from '../components/Landing/Sections/Game'; +import Intro from '../components/Landing/Sections/Intro'; +import JustWatch from '../components/Landing/Sections/JustWatch'; +import Optimal from '../components/Landing/Sections/Optimal'; +import Revolution from '../components/Landing/Sections/Revolution'; +import Together from '../components/Landing/Sections/Together'; +import Unplug from '../components/Landing/Sections/Unplug'; +import WhatWeDo from '../components/Landing/Sections/WhatWeDo'; +import Who from '../components/Landing/Sections/Who'; +import WildWeb from '../components/Landing/Sections/WildWeb'; +export const getStaticProps = async () => ({ + props: { + hideTopMenu: true, + }, +}); +const Landing: React.FC = () => ( +
- + - - + + - + - -
; -} - -export default Landing; +
+); +export default Landing; \ No newline at end of file