mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
23 lines
696 B
TypeScript
23 lines
696 B
TypeScript
import { Text, VStack } from '@metafam/ds';
|
|
import BackgroundImage from 'assets/landing/unplug-background.webp';
|
|
import { FullPageContainer } from 'components/Container';
|
|
import React from 'react';
|
|
|
|
export const Unplug: React.FC = () => (
|
|
<FullPageContainer bgImageUrl={BackgroundImage.src}>
|
|
<VStack
|
|
fontSize={{ base: 'xl', md: '5xl' }}
|
|
color="white"
|
|
maxWidth={{ base: '16rem', md: '32rem', lg: '64rem' }}
|
|
spacing={8}
|
|
align="stretch"
|
|
>
|
|
<Text textAlign="center">
|
|
So unplug yourself from the matrix & enter the future.
|
|
</Text>
|
|
|
|
<Text textAlign="center">earn, earn & make a difference.</Text>
|
|
</VStack>
|
|
</FullPageContainer>
|
|
);
|