Files
pawol.nu/pages/index.js
T
Cédric FAMIBELLE-PRONZOLA 8e362e1a02 Remove KatKayLa
2022-01-22 14:58:23 +04:00

25 lines
701 B
JavaScript

import {Container, Typography, Box} from '@mui/material'
import HeadLayout from '../components/head-layout'
import Footer from '../components/footer'
export default function Home() {
return (
<HeadLayout tab={0}>
<Box sx={{display: 'flex', flexDirection: 'column', minHeight: '100vh'}}>
<Box sx={{flexGrow: 1, marginTop: 1}}>
<Container align='center'>
<Typography variant='h6' component='h1'>
#OKi
</Typography>
<Typography variant='h6' component='h2'>
Organisation KA Internationale
</Typography>
</Container>
</Box>
<Footer />
</Box>
</HeadLayout>
)
}