6265e56a7f
Learn uses 64-gua card grid; liuyao/bazi/combined use two input cards plus sticky right AI panel; add manifest, service worker, and install prompt. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import PageShell from "@/components/page-shell";
|
|
import LiuyaoForm from "@/components/modes/liuyao-form";
|
|
|
|
export default function LiuyaoPage() {
|
|
return (
|
|
<PageShell>
|
|
<div className="border-b border-border/40 px-4 py-6 text-center">
|
|
<h1 className="text-2xl font-bold tracking-wide">六爻算卦</h1>
|
|
<p className="mt-2 text-sm text-muted-foreground">
|
|
问事 · 起卦时空 · 线上 / 线下六爻
|
|
</p>
|
|
</div>
|
|
<LiuyaoForm />
|
|
</PageShell>
|
|
);
|
|
}
|