fff77dac3f
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>
21 lines
431 B
TypeScript
21 lines
431 B
TypeScript
import Header from "@/components/header";
|
|
import Footer from "@/components/footer";
|
|
|
|
export default function PageShell({
|
|
children,
|
|
className = "",
|
|
}: {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}) {
|
|
return (
|
|
<div className="flex min-h-screen flex-col">
|
|
<Header />
|
|
<div className={`mx-auto flex w-full flex-1 flex-col ${className}`}>
|
|
{children}
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|