File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
src/app/(app)/notes/[nid] Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 99
1010### :sparkles : 特色功能
1111
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+ - 🌍 ** 国际化支持** :所有静态内容均兼容中英文,基于用户浏览器语言自动切换。
1617
1718### 📄 使用
1819
2425 - ` introduction.ts ` :配置个人介绍。
2526 - ` projects.ts ` :配置项目列表。
2627 - ` seo.ts ` :配置 SEO 优化项(如网页的 title、description 等 MetaData)。
28+ - ` signature.tsx ` :用户个性签名,建议使用figma输入文字选择字体然后导出为svg 。
2729- 文章存放在 ` markdown ` 文件夹下,同时需要修改 ` markdown/index.json ` 文件,添加文章的元数据。
2830- 文章的封面图片需放在 ` public/postCoverImage ` 目录下。
2931
File renamed without changes.
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ import { MdiClockOutline } from '@/components/icons/clock';
1515import { type PostItem as PostItemType , getPostData } from '@/core' ;
1616import { LayoutRightSidePortal } from '@/providers/shared/LayoutRightSideProvider' ;
1717import { ArticleRightAside } from '@/components/modules/shared/ArticleRightAside' ;
18- import { Signature } from '@/components/modules/shared/signature' ;
1918import Gisus from '@/components/modules/comment/Giscus' ;
2019import { getUserLocale } from '@/lib/getLocale' ;
2120import localeValues from '@/locale' ;
21+ import { Signature } from '~/signature' ;
2222
2323const { postDataMap } = await getPostData ( ) ;
2424
You can’t perform that action at this time.
0 commit comments