nezha_dash/app/(main)/layout.tsx
2024-07-27 14:15:45 +08:00

24 lines
610 B
TypeScript

import React from "react";
import Header from "@/app/(main)/header";
import BlurLayers from "@/components/BlurLayer";
import Footer from "./footer";
type DashboardProps = {
children: React.ReactNode;
};
export default function MainLayout({ children }: DashboardProps) {
return (
<div className="flex min-h-screen w-full flex-col">
<main className="flex min-h-[calc(100vh_-_theme(spacing.16))] flex-1 flex-col gap-4 bg-muted/40 p-4 md:p-10 md:pt-8">
<Header />
{/* <BlurLayers /> */}
{/* <Nav /> */}
{children}
<Footer />
</main>
</div>
);
}