From e407a729de354ed6b07cb1ea4e1afc575ac8bade Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Wed, 27 Jul 2022 20:55:46 +0500 Subject: [PATCH] aboutus page started --- src/App.tsx | 2 ++ src/components/global/Nav.tsx | 2 +- src/helpers/apiRequests.ts | 10 ++++++ src/links.ts | 2 ++ src/pages/AboutUs.tsx | 63 +++++++++++++++++++++++++++++++++++ src/styles/_about-us.scss | 37 ++++++++++++++++++++ src/styles/_variables.scss | 9 +++++ src/styles/style.scss | 1 + 8 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 src/pages/AboutUs.tsx create mode 100644 src/styles/_about-us.scss diff --git a/src/App.tsx b/src/App.tsx index fa27028..0953df7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -22,6 +22,7 @@ import Profile from "./pages/Profile"; import EventItem from "./pages/EventItem"; import Structure from "./pages/Structure"; import Contacts from "./pages/Contact"; +import AboutUs from "./pages/AboutUs"; const App = () => { // Types @@ -50,6 +51,7 @@ const App = () => { } /> } /> } /> + } />