fff77dac3f
Add liuyao/bazi/combined flows with shared calc and AI infrastructure, 64-gua learn routes, and update Ubuntu PM2 deployment docs for port 3130. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
467 B
TypeScript
17 lines
467 B
TypeScript
import PageShell from "@/components/page-shell";
|
|
import LiuyaoForm from "@/components/modes/liuyao-form";
|
|
|
|
export default function LiuyaoPage() {
|
|
return (
|
|
<PageShell>
|
|
<div className="px-4 pt-6 text-center">
|
|
<h1 className="text-xl font-bold">六爻算卦</h1>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
问事 · 起卦时空 · 线上 / 线下六爻
|
|
</p>
|
|
</div>
|
|
<LiuyaoForm />
|
|
</PageShell>
|
|
);
|
|
}
|