Files
zhimingge/app/combined/page.tsx
T
dekun 04c77dbf77 Support ultrawide layout with equal columns and taiji branding.
Use 50/50 mode workspace columns, widen content to 1920px on fish screens, replace header logo with taiji icon, and add full-page taiji backdrop.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-10 23:50:19 +08:00

18 lines
571 B
TypeScript

import PageShell from "@/components/page-shell";
import CombinedForm from "@/components/modes/combined-form";
import { APP_CONTAINER } from "@/lib/layout";
export default function CombinedPage() {
return (
<PageShell>
<div className={`${APP_CONTAINER} 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>
<CombinedForm />
</PageShell>
);
}