Files
pawol.nu/components/kat-rezo-nou/nouvel.js
T
Cédric FAMIBELLE-PRONZOLA 08837b991a Typo nouvel kat
2022-02-01 23:45:18 +04:00

37 lines
1.4 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 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&apos;<strong>actualité</strong>
</Typography>
<Typography gutterBottom variant='body2'>
Vous souhaitez y <strong>contribuer</strong> ?
<br />
Contactez-nous <Link target='_blank' rel='noopener' underline='hover' href='mailto:kontak@oki.re?subject=Contribution #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>
)
}