Files
zhimingge/app/liuyao/page.tsx
T
dekun 9fc7336095 Tighten ultrawide layout with visible side gutters.
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>
2026-06-11 00:26:59 +08:00

17 lines
516 B
TypeScript

import PageShell from "@/components/page-shell";
import LiuyaoForm from "@/components/modes/liuyao-form";
export default function LiuyaoPage() {
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">
· · 线 / 线
</p>
</div>
<LiuyaoForm />
</PageShell>
);
}