summaryrefslogtreecommitdiff
path: root/src/app/(public)/layout.tsx
blob: 5b71246d7640ca76ed691ffe1aa7dbae4b32ada3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Header } from "@/components/layout/Header";
import { Footer } from "@/components/layout/Footer";

export default function PublicLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <>
      <Header />
      <main className="min-h-[calc(100vh-4rem)]">{children}</main>
      <Footer />
    </>
  );
}