17 lines
306 B
TypeScript
17 lines
306 B
TypeScript
import Navbar from "@/components/Navbar";
|
|
import Footer from "@/components/Footer";
|
|
|
|
export default function MarketingLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
{children}
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|