in src/App.js [67:88]
export default function App() {
const style = css({
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
padding: '3rem 4rem',
width: '100vw',
backgroundColor: 'whitesmoke',
'@media (max-width: 48rem)': {
padding: '2rem 2rem',
},
})
return (
<div {...style}>
<Title />
<Description />
<LangList langs={langs} />
<Footer />
</div>
)
}