35 lines
1.2 KiB
JavaScript
35 lines
1.2 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 Pale() {
|
|
return (
|
|
<Box sx={{minWidth: 275, marginBottom: 3}}>
|
|
<Card>
|
|
<CardContent>
|
|
<Link href='https://pale.o-k-i.net/timeline/local' target='_blank' rel='noopener' underline='hover'>
|
|
<Typography gutterBottom variant='h5'>
|
|
Palé
|
|
</Typography>
|
|
</Link>
|
|
<Typography variant='h6' component='div'>
|
|
Alternative pour <strong>Twitter</strong>
|
|
</Typography>
|
|
<Typography gutterBottom variant='body2'>
|
|
Les posts sont limités à <strong>5 000 caractères</strong>.
|
|
</Typography>
|
|
</CardContent>
|
|
<Box sx={{display: 'flex', justifyContent: 'center'}}>
|
|
<CardActions>
|
|
<Button target='_blank' rel='noopener' href='https://pale.o-k-i.net/timeline/local'>Accéder à Palé</Button>
|
|
</CardActions>
|
|
</Box>
|
|
</Card>
|
|
</Box>
|
|
)
|
|
}
|