feat: add 'about' page

This commit is contained in:
Henry Li
2026-02-06 15:18:37 +08:00
parent dd4a7aae36
commit 44742c6353
13 changed files with 675 additions and 22 deletions

View File

@@ -0,0 +1,9 @@
"use client";
import { Streamdown } from "streamdown";
import about from "./about.md";
export function AboutSettingsPage() {
return <Streamdown>{about}</Streamdown>;
}