2025-08-09 01:12:10 +02:00
|
|
|
import { Button, Typography, Container } from '@mui/material';
|
2025-08-09 01:28:58 +02:00
|
|
|
import Link from '@mui/material/Link';
|
2025-08-09 01:12:10 +02:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
|
|
|
|
<Container>
|
|
|
|
|
<Typography variant="h2" gutterBottom>
|
2025-08-09 01:20:51 +02:00
|
|
|
Unavailable
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography>
|
2025-08-09 01:28:58 +02:00
|
|
|
We are working on it!
|
|
|
|
|
</Typography>
|
|
|
|
|
<br/>
|
|
|
|
|
<Button component={Link} href="https://os.laminax.co" variant="contained" color="primary">
|
|
|
|
|
In the meantime... try LAMINAX OS!
|
|
|
|
|
</Button>
|
|
|
|
|
<br/><br/><br/><br/>
|
|
|
|
|
<Typography>
|
|
|
|
|
FYI this is a fansite
|
2025-08-09 01:12:10 +02:00
|
|
|
</Typography>
|
|
|
|
|
</Container>
|
|
|
|
|
);
|
|
|
|
|
}
|