diff --git a/src/app/event/layout.tsx b/src/app/event/layout.tsx new file mode 100644 index 0000000..34d3e5f --- /dev/null +++ b/src/app/event/layout.tsx @@ -0,0 +1,17 @@ +import React from "react"; +import Navbar from "@/components/navbar"; +import Footer from "@/components/footer"; + +interface RootLayoutProps { + children: React.ReactNode; +} + +export default function RootLayout({ children }: RootLayoutProps) { + return ( + <> + + {children} +