Files
zhimingge/components/page-shell.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

21 lines
504 B
TypeScript

import Header from "@/components/header";
import Footer from "@/components/footer";
import TaijiBackdrop from "@/components/layout/taiji-backdrop";
export default function PageShell({
children,
className = "",
}: {
children: React.ReactNode;
className?: string;
}) {
return (
<div className="relative flex min-h-screen flex-col">
<TaijiBackdrop />
<Header />
<div className={`flex w-full flex-1 flex-col ${className}`}>{children}</div>
<Footer />
</div>
);
}