24 lines
605 B
JavaScript
Executable File
24 lines
605 B
JavaScript
Executable File
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>
|
|
);
|
|
}
|