Files
leoncloud_temeplate/app/page.tsx

20 lines
574 B
TypeScript
Raw Normal View History

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
}