9fc7336095
Cap content at 768-960px via PageShell width tiers, add muted outer margins, and limit gua grid to four columns. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import PageShell from "@/components/page-shell";
|
|
import BaziForm from "@/components/modes/bazi-form";
|
|
|
|
export default function BaziPage() {
|
|
return (
|
|
<PageShell width="wide">
|
|
<div className="border-b border-border/40 py-6 text-center">
|
|
<h1 className="text-2xl font-bold tracking-wide">生辰八字</h1>
|
|
<p className="mt-2 text-sm text-muted-foreground">
|
|
四柱排盘 · 十神大运 · AI 命理解读
|
|
</p>
|
|
</div>
|
|
<BaziForm />
|
|
</PageShell>
|
|
);
|
|
}
|