import Header from "@/components/header"; import Footer from "@/components/footer"; import TaijiBackdrop from "@/components/layout/taiji-backdrop"; import { CONTENT_SHELL, type ContentShellWidth, } from "@/lib/layout"; import { cn } from "@/lib/utils"; export default function PageShell({ children, className = "", width = "default", }: { children: React.ReactNode; className?: string; width?: ContentShellWidth; }) { return (