import { Image, MetaButton, MetaHeading, Text } from '@metafam/ds'; import React from 'react'; import PlayersImage from '../public/images/players.png'; import { FlexContainer } from './Container'; type Props = { next: () => void; }; export const WelcomePlayer: React.FC = ({ next }) => { return ( Become a Player MetaGame is an idea we can build a new world, a layer atop of the old one. A more collaborative, transparent & caring world. A world in which self-interest is better aligned with the common good & the ones creating value are more directly rewarded. { next(); }} mt={10} > Register ); };