37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
import Box from '@mui/material/Box'
|
||
import Card from '@mui/material/Card'
|
||
import CardActions from '@mui/material/CardActions'
|
||
import CardContent from '@mui/material/CardContent'
|
||
import Button from '@mui/material/Button'
|
||
import Typography from '@mui/material/Typography'
|
||
import Link from '@mui/material/Link'
|
||
|
||
export default function Nouvel() {
|
||
return (
|
||
<Box sx={{minWidth: 275, marginBottom: 3}}>
|
||
<Card raised>
|
||
<CardContent>
|
||
<Link href='https://nouvel.o-k-i.net' target='_blank' rel='noopener' underline='hover'>
|
||
<Typography gutterBottom variant='h5'>
|
||
Nouvèl
|
||
</Typography>
|
||
</Link>
|
||
<Typography variant='h6' component='div'>
|
||
Traite de l'<strong>actualité</strong>
|
||
</Typography>
|
||
<Typography gutterBottom variant='body2'>
|
||
Vous souhaitez devenir <strong>auteur</strong> ?
|
||
<br />
|
||
Contactez-nous ➡️ <Link target='_blank' rel='noopener' underline='hover' href='mailto:kontak@oki.re?subject=Auteur #OKi Nouvèl'><strong>kontak@oki.re</strong></Link>
|
||
</Typography>
|
||
</CardContent>
|
||
<Box sx={{display: 'flex', justifyContent: 'center'}}>
|
||
<CardActions>
|
||
<Button target='_blank' rel='noopener' href='https://nouvel.o-k-i.net'>Accéder à Nouvèl</Button>
|
||
</CardActions>
|
||
</Box>
|
||
</Card>
|
||
</Box>
|
||
)
|
||
}
|