Files
TheGame/packages/web/components/Landing/sections/WildWeb.tsx

67 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {
Container,
Box,
Text,
} from "@metafam/ds"
import BackgroundImage from 'assets/landing/wildweb-background.png'
function WildWeb() {
return (
<Box
width="100%"
minHeight="1040px"
backgroundImage={`url(${BackgroundImage})`}
bgPosition="center"
bgSize="cover"
>
<Container
width="100%"
height="100vh"
display="flex"
flexDirection="column"
justifyContent="center"
maxWidth="100%"
alignItems="center"
>
<Box fontSize="48px"
LineHeight="64px"
fontWeight="normal"
color="white"
maxWidth="978px">
<Text pt="130px" pb="35px">
Web3 technologies are allowing us to <Text fontWeight = "bold" >reimagine socioeconomic systems</Text> from ground up.
</Text>
<Text pb="35px">
A new world is being built but its <Text fontWeight = "bold">hard to navigate.</Text>
</Text>
<Text pb="35px">
The resources, building blocks & tools are all over the place <Text fontWeight = "bold">but the maps are inexistent.</Text>
</Text>
<Text pb="35px">
There are pitfalls, gold rushing cowboys & snake oil salesmen at every corner.
</Text>
<Text
pb="35px"
maxWidth="978px"
width="100%"
textTransform="uppercase"
>
Its a Wild Web.
</Text>
</Box>
</Container>
</Box>
);
}
export default WildWeb;