Files
leoncloud_temeplate/app/awa/second/page.tsx
2025-11-20 15:06:51 +08:00

20 lines
547 B
TypeScript

import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';
import { Container } from '@mui/material';
export default function Second() {
return (
<div>
<Container maxWidth="md" sx={{ py: { xs: 7, md: 16 }, textAlign: 'center' }}>
<Box sx={{ width: '100%', maxWidth: 500 }}>
<Typography variant='h1'>
Second
</Typography><br />
<Typography>
<code>/awa</code>
</Typography>
</Box>
</Container>
</div>
)
}