-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(site/blog): update dependencies and add code snippets
- Loading branch information
Qhan W
authored and
Qhan W
committed
Apr 24, 2024
1 parent
565db59
commit fc9e3b8
Showing
5 changed files
with
4,263 additions
and
3,308 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import Footer from "@/app/(web)/components/Footer"; | ||
import seo from "@/utils/seo"; | ||
|
||
export async function generateMetadata() { | ||
return seo({ | ||
title: "Projects", | ||
description: "工作中一些值得展示的项目成果", | ||
}); | ||
} | ||
|
||
export default function Projects() { | ||
return ( | ||
<> | ||
{/* text-transparent text-stroke-2 text-stroke-hex-aaa */} | ||
<div className="text-3xl text-center font-semibold opacity-30 mb-8 mx-auto"> | ||
Code Snippets | ||
</div> | ||
<div className="grid gap-4 prose mx-auto">该部分为常用代码片段收集</div> | ||
<Footer className="prose mx-auto" /> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.