462bec2739
Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
636 B
TypeScript
19 lines
636 B
TypeScript
import PageShell from "@/components/page-shell";
|
|
import { TaijiIcon } from "@/components/svg/taiji";
|
|
import HomeModules from "@/components/home/home-modules";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<PageShell width="narrow" className="py-10 sm:py-14">
|
|
<div className="mb-10 text-center">
|
|
<TaijiIcon className="mx-auto h-12 w-12 opacity-80" />
|
|
<h1 className="mt-2 text-3xl font-bold tracking-[0.2em]">知命阁</h1>
|
|
<p className="mt-3 text-sm tracking-wide text-muted-foreground">
|
|
融合周易智慧与人工智能
|
|
</p>
|
|
</div>
|
|
<HomeModules />
|
|
</PageShell>
|
|
);
|
|
}
|