Files
lander/pages/index.js

15 lines
329 B
JavaScript
Raw Normal View History

2025-08-09 01:12:10 +02:00
import { Button, Typography, Container } from '@mui/material';
export default function Home() {
return (
<Container>
<Typography variant="h2" gutterBottom>
2025-08-09 01:20:51 +02:00
Unavailable
</Typography>
<Typography>
We are working on stopping the breach for you...
2025-08-09 01:12:10 +02:00
</Typography>
</Container>
);
}