feat: 完成网站前端的基本建设

- 网站内容展示:首页, 产品页, 解决方案, 联系信息等
- 网站跳转逻辑:通过Vue-Router实现路由跳转
- 后端通信: 通过Nuxt Strapi与后端Strapi服务进行通信
This commit is contained in:
2025-09-06 15:59:52 +08:00
parent 6470da9792
commit f957adfa5d
52 changed files with 3358 additions and 92 deletions

View File

@ -3,6 +3,7 @@ body,
#app {
margin: 0;
padding: 0;
font-family: var(--font-main);
}
html.dark {
@ -14,3 +15,7 @@ a {
font-weight: 400;
color: var(--el-color-primary);
}
:root {
--font-main: "Source Han Sans CN", "Noto Sans CJK SC", "Noto Sans CJK", sans-serif;
}