From f6398148767553c2a02cc54638b37f5562539267 Mon Sep 17 00:00:00 2001 From: Rhen Cloud Date: Sat, 3 Jan 2026 22:32:33 +0800 Subject: [PATCH] update --- app/config/index.ts | 4 +- app/pages/about.vue | 9 +++ app/pages/categories/[category].vue | 4 +- app/pages/posts/[post].vue | 4 +- app/pages/tags/[tag].vue | 2 +- app/pages/tags/index.vue | 4 +- app/types/nav.ts | 94 +++++++++++++++++++++++++++++ 7 files changed, 112 insertions(+), 9 deletions(-) create mode 100644 app/types/nav.ts diff --git a/app/config/index.ts b/app/config/index.ts index 9e84c12..113a2fa 100644 --- a/app/config/index.ts +++ b/app/config/index.ts @@ -1,4 +1,6 @@ -const siteConfig = { +import type { SiteConfig } from "~/types/nav"; + +const siteConfig: SiteConfig = { siteMeta: { title: "RhenCloud's Blog", description: "一个普普通通的技术博客,分享技术,记录日常,传递一些有趣的想法。", diff --git a/app/pages/about.vue b/app/pages/about.vue index fa51914..a05940e 100644 --- a/app/pages/about.vue +++ b/app/pages/about.vue @@ -1,9 +1,18 @@