Files
zhimingge/app/liuyao/page.tsx
T
dekun 6265e56a7f Redesign UI with zen cards, split AI panel, and PWA install support.
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>
2026-06-10 23:24:55 +08:00

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>
);
}