temeplate

This commit is contained in:
2025-11-20 15:00:26 +08:00
parent e2885d6433
commit 392d553276
94 changed files with 249 additions and 3002 deletions

20
app/awa/second/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
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>
)
}