This commit is contained in:
2026-02-26 03:58:17 +08:00
parent 91f5f17028
commit 7489b8f1ab
40 changed files with 466 additions and 144 deletions

9
src/pages/about/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function AboutPage() {
return (
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
About Light Code
</main>
</div>
);
}