Files
zhimingge/app/combined/page.tsx
T
dekun fff77dac3f Implement three divination modes, learn pages, and PM2 deploy on port 3130.
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>
2026-06-10 20:19:49 +08:00

17 lines
470 B
TypeScript

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