25 lines
701 B
JavaScript
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>
|
|
)
|
|
}
|