Files
lander/pages/index.js
2025-08-09 01:28:58 +02:00

24 lines
605 B
JavaScript

import { Button, Typography, Container } from '@mui/material';
import Link from '@mui/material/Link';
export default function Home() {
return (
<Container>
<Typography variant="h2" gutterBottom>
Unavailable
</Typography>
<Typography>
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
</Typography>
</Container>
);
}