import { useData } from '../../contexts/DataContext' import { theme } from '../../styles/stitches.config' import { Avatar } from '../Avatar' import { Button } from '../Button' import { SocialLinks } from '../SocialLinks' import { Content, Description, Name, Wrapper } from './styles' export const Home = () => { const { data } = useData() const { colors, buttonsSchema, outline, font, name, description } = data.settings return ( {name} {description} {data.buttonLinks?.map(link => // @ts-ignore // prettier-ignore )} ) }