File tree 3 files changed +7
-5
lines changed
src/app/(app)/notes/[nid]
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 9
9
10
10
### :sparkles : 特色功能
11
11
12
- - ⚡ ** 快速** :通过 Next.js 的 SSR 和 RSC 优化首屏加载时间,部分内链实现跳转路由预加载,提升用户体验。
13
- - 🌱 ** 简洁易用** :纯前端架构,搭建简单,支持在 Vercel 上一键部署。用户可通过修改配置文件轻松自定义元数据、主题色等内容。
14
- - 🔮 ** UI** :响应式布局,完美适配移动端与 PC 端,基于 Framer Motion 实现流畅的弹性动画,增强用户互动体验。
15
- - 🔮 ** SEO** :完善的MetaData,支持open graph,支持RSS订阅。
12
+ - ⚡ ** 快速** :利用 Next.js 的 SSR 与 RSC 技术优化首屏加载性能,配合内链路由预加载,显著提升用户交互流畅度。
13
+ - 🛠️ ** 简洁易用** :纯前端架构,部署便捷,支持一键部署至 Vercel。通过简单修改配置文件,自定义元数据、主题配色等内容,轻松打造个性化博客。
14
+ - 💎 ** UI** :响应式布局,完美适配移动端与 PC 端,基于 Framer Motion 实现流畅的弹性动画,增强用户互动体验。
15
+ - 📈 ** SEO** :提供完善的 MetaData,兼容 Open Graph 协议与 RSS 订阅。
16
+ - 🌍 ** 国际化支持** :所有静态内容均兼容中英文,基于用户浏览器语言自动切换。
16
17
17
18
### 📄 使用
18
19
24
25
- ` introduction.ts ` :配置个人介绍。
25
26
- ` projects.ts ` :配置项目列表。
26
27
- ` seo.ts ` :配置 SEO 优化项(如网页的 title、description 等 MetaData)。
28
+ - ` signature.tsx ` :用户个性签名,建议使用figma输入文字选择字体然后导出为svg 。
27
29
- 文章存放在 ` markdown ` 文件夹下,同时需要修改 ` markdown/index.json ` 文件,添加文章的元数据。
28
30
- 文章的封面图片需放在 ` public/postCoverImage ` 目录下。
29
31
File renamed without changes.
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ import { MdiClockOutline } from '@/components/icons/clock';
15
15
import { type PostItem as PostItemType , getPostData } from '@/core' ;
16
16
import { LayoutRightSidePortal } from '@/providers/shared/LayoutRightSideProvider' ;
17
17
import { ArticleRightAside } from '@/components/modules/shared/ArticleRightAside' ;
18
- import { Signature } from '@/components/modules/shared/signature' ;
19
18
import Gisus from '@/components/modules/comment/Giscus' ;
20
19
import { getUserLocale } from '@/lib/getLocale' ;
21
20
import localeValues from '@/locale' ;
21
+ import { Signature } from '~/signature' ;
22
22
23
23
const { postDataMap } = await getPostData ( ) ;
24
24
You can’t perform that action at this time.
0 commit comments