feat(content): add initial homepage content and navigation

This commit introduces the foundational content and navigation for the website's homepage.

- Adds a new navigation menu to the default layout, linking to Services, Projects, and Insights.
- Creates YAML content files for the homepage in both English (en) and Chinese (zh-CN).
- Populates the content with key sections including capabilities, featured projects, and tech stack.
This commit is contained in:
xiaomai
2025-11-05 14:27:00 +08:00
parent 113ebabb94
commit 87731a6379
4 changed files with 180 additions and 0 deletions

12
app/utils/navLinks.ts Normal file
View File

@@ -0,0 +1,12 @@
import type {NavigationMenuItem} from "@nuxt/ui";
export const navLinks: NavigationMenuItem[] = [{
label: "Services",
icon: "mdi:briefcase-outline"
}, {
label: "Projects",
icon: "mdi:lightbulb-group-outline"
}, {
label: "Insights",
icon: "mdi:brain"
}]