import Header from "@/components/header"; import Footer from "@/components/footer"; import TaijiBackdrop from "@/components/layout/taiji-backdrop"; import { SITE_WIDTH, SITE_WIDTH_NARROW } from "@/components/layout/site-width"; import { cn } from "@/lib/utils"; const SHELL_WIDTH = { default: SITE_WIDTH, narrow: SITE_WIDTH_NARROW, wide: SITE_WIDTH, } as const; export type ContentShellWidth = keyof typeof SHELL_WIDTH; export default function PageShell({ children, className = "", width = "default", }: { children: React.ReactNode; className?: string; width?: ContentShellWidth; }) { return (