15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
import { Button, Typography, Container } from '@mui/material';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Container>
|
|
<Typography variant="h2" gutterBottom>
|
|
Unavailable
|
|
</Typography>
|
|
<Typography>
|
|
We are working on stopping the breach for you...
|
|
</Typography>
|
|
</Container>
|
|
);
|
|
}
|