diff --git a/client/src/App.tsx b/client/src/App.tsx
index d326fba..219b961 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -9,6 +9,7 @@ import CommunityPage from "./pages/CommunityPage";
import CreatePostPage from "./pages/CreatePostPage";
import EditPostPage from "./pages/EditPostPage";
import SchedulePage from "./pages/SchedulePage";
+import EventsPage from "./pages/EventsPage";
function App() {
return (
@@ -23,6 +24,8 @@ function App() {
} path="/createPost" />
} path="/editPost/:id" />
} path="/schedule" />
+ } path="/events" />
+
);
}
diff --git a/client/src/components/NavigationBar.tsx b/client/src/components/NavigationBar.tsx
index 8be17f0..600d24b 100644
--- a/client/src/components/NavigationBar.tsx
+++ b/client/src/components/NavigationBar.tsx
@@ -76,7 +76,13 @@ export default function NavigationBar() {
/>
-