Skip to content

Commit

Permalink
Merge pull request #129 from deveshsawant05/new
Browse files Browse the repository at this point in the history
Added Navbar and Footer to event/[id] Page
  • Loading branch information
Anas-github-acc authored Oct 30, 2024
2 parents fdaa125 + b91f078 commit 981ec7a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/app/event/layout.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<>
<Navbar />
{children}
<Footer />
</>
);
}

1 comment on commit 981ec7a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for iiitvcc ready!

✅ Preview
https://iiitvcc-bc59jlihl-iiitv-coding-clubs-projects.vercel.app

Built with commit 981ec7a.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.