2024-12-25 00:45:56 +00:00
|
|
|
import Footer from "@/components/landing-page/footer";
|
|
|
|
|
import Navbar from "@/components/landing-page/navbar";
|
2024-12-04 00:30:36 +00:00
|
|
|
|
|
|
|
|
const layout = async ({ children }: { children: React.ReactNode }) => {
|
2024-12-04 14:12:10 +00:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Navbar />
|
|
|
|
|
{children}
|
|
|
|
|
<Footer />
|
|
|
|
|
</>
|
|
|
|
|
);
|
2024-12-04 00:30:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default layout;
|