Files
zhimingge/app/combined/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
511 B
TypeScript

import PageShell from "@/components/page-shell";
import CombinedForm from "@/components/modes/combined-form";
export default function CombinedPage() {
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>
<CombinedForm />
</PageShell>
);
}