Files
TheGame/packages/web/components/SuccessPlayer.tsx
dan13ram 357f292ace added layout for profile setup (#67)
* added layout for profile setup

* fixed fonts & links
2020-08-14 23:08:09 -06:00

26 lines
764 B
TypeScript

import { Image, MetaButton, MetaHeading, Text } from '@metafam/ds';
import NextLink from 'next/link';
import React from 'react';
import AvatarImage from '../public/images/avatar.png';
import { FlexContainer } from './Container';
import { MetaLink } from './Link';
export const SuccessPlayer: React.FC = () => {
return (
<FlexContainer h="100%">
<MetaHeading m={5}>Success!</MetaHeading>
<Image m={10} src={AvatarImage} />
<NextLink href="/profile/setup">
<MetaButton mt={5} mb={8}>
Set up your profile
</MetaButton>
</NextLink>
<Text fontFamily="mono" color="offwhite">
{`I'll do this later. `}
<MetaLink href="">Go to my profile</MetaLink>
</Text>
</FlexContainer>
);
};