2025-11-20 15:00:26 +08:00
|
|
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
|
|
import Box from '@mui/material/Box';
|
|
|
|
|
|
import { Container } from '@mui/material';
|
2025-11-14 22:06:17 +08:00
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
|
return (
|
2025-11-20 15:00:26 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
<Container maxWidth="md" sx={{ py: { xs: 7, md: 16 }, textAlign: 'center' }}>
|
|
|
|
|
|
<Box sx={{ width: '100%', maxWidth: 500 }}>
|
|
|
|
|
|
<Typography variant='h1'>
|
|
|
|
|
|
这是主页
|
|
|
|
|
|
</Typography><br />
|
|
|
|
|
|
<Typography>
|
|
|
|
|
|
这个模板主要是mui库,官网:https://mui.com/material-ui/
|
|
|
|
|
|
</Typography>
|
2025-11-15 21:58:53 +08:00
|
|
|
|
</Box>
|
2025-11-20 15:00:26 +08:00
|
|
|
|
</Container>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
2025-11-15 21:58:53 +08:00
|
|
|
|
}
|