This commit is contained in:
2025-11-16 15:31:19 +08:00
committed by LeonMMcoset
parent 999a45a598
commit 2026a2ab22
83 changed files with 1104 additions and 399 deletions

View File

@@ -40,7 +40,19 @@ export default function Home() {
description: "个人项目展示平台",
image: "/projects/leonpan/logo.png",
href: "/project/leonpan"
}
},
{
name: "LeonBasic",
description: "基于Rust的简单易学的编程语言",
image: "/nologo.png",
href: "/project/leonbasic"
},
{
name: "LeonApp",
description: "基于PHP的轻量级应用程序",
image: "/projects/leonapp/logo.jpeg",
href: "/project/leonapp"
},
];
// 扩展服务类别数据
@@ -366,39 +378,6 @@ export default function Home() {
</Container>
</Box>
{/* 页脚区域 */}
<Box sx={{ bgcolor: 'primary.dark', color: 'white', py: 8, px: 2 }}>
<Container maxWidth="lg">
<Box sx={{
display: 'flex',
flexDirection: isMobile ? 'column' : 'row',
justifyContent: 'space-between',
alignItems: 'center',
mb: 6
}}>
<Typography variant="h5" gutterBottom fontWeight="bold">
LeonCloud
</Typography>
<Typography variant="body1" sx={{ opacity: 0.8 }}>
LeonMMcoset的所有产品的运营商
</Typography>
</Box>
<Box sx={{
height: 1,
bgcolor: 'white',
opacity: 0.1,
mb: 6
}}></Box>
<Typography variant="body2" align="center" paragraph>
© {new Date().getFullYear()} LeonCloud.
</Typography>
<Typography variant="caption" align="center" color="rgba(255,255,255,0.7)">
</Typography>
</Container>
</Box>
</Box>
);
}