From 8a3fa2a066b61188b9d6c131020a840708046580 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Fri, 24 Jun 2022 00:14:20 +0500 Subject: [PATCH] events page desktop --- src/App.tsx | 2 + src/components/{main => global}/Event.tsx | 0 src/components/global/Nav.tsx | 2 +- src/components/main/EventsSection.tsx | 2 +- src/pages/Events.tsx | 112 ++++++++++++++++++++++ src/styles/_event.scss | 48 ++++++++++ src/styles/_events.scss | 8 ++ src/styles/_main.scss | 49 ---------- src/styles/style.scss | 2 + 9 files changed, 174 insertions(+), 51 deletions(-) rename src/components/{main => global}/Event.tsx (100%) create mode 100644 src/pages/Events.tsx create mode 100644 src/styles/_event.scss create mode 100644 src/styles/_events.scss diff --git a/src/App.tsx b/src/App.tsx index e418bbb..2e0977f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,6 +10,7 @@ import Footer from "./components/global/Footer"; // Pages import Main from "./pages/Main"; +import Events from "./pages/Events"; const App = () => { return ( @@ -18,6 +19,7 @@ const App = () => {
} /> + } />