Files
lander/pages/index.js
usernames122 2f72eb55ab Bullshit
2025-08-09 01:12:10 +02:00

15 lines
342 B
JavaScript

import { Button, Typography, Container } from '@mui/material';
export default function Home() {
return (
<Container>
<Typography variant="h2" gutterBottom>
Welcome to Next.js with Material-UI!
</Typography>
<Button variant="contained" color="primary">
Click me
</Button>
</Container>
);
}