From 665f58a285014e04fdc539d637982a16d32e0eda Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Tue, 28 Jun 2022 19:08:16 +0500 Subject: [PATCH] profile page on /profile --- src/App.tsx | 2 ++ src/pages/Profile.tsx | 62 +++++++++++++++++++++++++++++++++++++ src/styles/_profile.scss | 67 ++++++++++++++++++++++++++++++++++++++++ src/styles/style.scss | 1 + 4 files changed, 132 insertions(+) create mode 100644 src/pages/Profile.tsx create mode 100644 src/styles/_profile.scss diff --git a/src/App.tsx b/src/App.tsx index 58d5e48..c84c497 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -12,6 +12,7 @@ import Footer from "./components/global/Footer"; import Main from "./pages/Main"; import Events from "./pages/Events"; import Rating from "./pages/Rating"; +import Profile from "./pages/Profile"; const App = () => { return ( @@ -22,6 +23,7 @@ const App = () => { } /> } /> } /> + } />