From e45bb84b885f2d53d106c06d935778be2bc1020d Mon Sep 17 00:00:00 2001 From: Miran Date: Thu, 23 Jan 2025 19:28:21 +0530 Subject: [PATCH] fix: routing issue --- src/App.jsx | 2 +- src/routes/index.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 743300c..bb5dab3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -17,7 +17,7 @@ const navLinks = [ { name: "Gallery", path: "/gallery" }, { name: "Events", path: "/events" }, { name: "Contact Us", path: "/contact" }, - { name: "Symbitech 2025", path: "/symbitech2025"} + { name: "Symbitech 2025", path: "/symbitech2025" }, ]; function App() { diff --git a/src/routes/index.jsx b/src/routes/index.jsx index d3372e8..6df7300 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.jsx @@ -62,7 +62,7 @@ const routes = [ path: "/symbitech2025", requireAuth: false, render: , - } + }, ]; export default routes;