17 lines
283 B
TypeScript
17 lines
283 B
TypeScript
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
|
||
|
|
export default function AuthLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Navbar />
|
||
|
|
{children}
|
||
|
|
<Footer />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|