Files
pawol.nu/pages/index.js
T
Cédric FAMIBELLE-PRONZOLA 0e32e7747d Improve typo index
2022-02-01 23:44:18 +04:00

39 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {Container, Typography, Box} from '@mui/material'
import HeadLayout from '../components/head-layout'
import Footer from '../components/footer'
import Pale from '../components/kat-rezo-nou/pale'
import Gade from '../components/kat-rezo-nou/gade'
import Nouvel from '../components/kat-rezo-nou/nouvel'
export default function Home() {
return (
<HeadLayout tab={0}>
<Box sx={{display: 'flex', flexDirection: 'column', minHeight: '100vh'}}>
<Box sx={{flexGrow: 1, marginTop: 1}}>
<Container sx={{marginBottom: 3}} align='center'>
<Typography sx={{fontWeight: 'bold'}} variant='h6' component='h1'>
#OKi
</Typography>
<Typography sx={{fontWeight: 'bold'}} variant='h6' component='h2'>
Organisation KA Internationale
</Typography>
<Typography sx={{fontStyle: 'italic'}} variant='caption' component='h3'>
Musiques et Actualités
</Typography>
</Container>
<Container align='center'>
<Typography gutterBottom variant='body' component='h4'>
Rejoignez-nous !
</Typography>
<Pale />
<Gade />
<Nouvel />
</Container>
</Box>
<Footer />
</Box>
</HeadLayout>
)
}