From 80dd1b48aa3f1afe6a60df1f312c387c552533dd Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Thu, 20 Feb 2025 20:31:26 +0100 Subject: [PATCH] Styling pages WIP --- client/src/App.tsx | 19 +++-- client/src/components/Code/index.css | 9 ++- client/src/components/Code/index.tsx | 2 +- client/src/components/Footer/index.css | 10 +++ client/src/components/Footer/index.tsx | 11 +++ client/src/components/Stats/index.css | 16 ++-- client/src/components/Stats/index.tsx | 2 +- client/src/constants/default.ts | 28 +++++++ client/src/index.css | 57 ++++++++++++-- client/src/pages/Home/index.css | 100 ++++++++++++++++++++++++- client/src/pages/Home/index.tsx | 51 ++++++++++++- client/src/pages/Languages/index.css | 44 ++++++++++- client/src/pages/Languages/index.tsx | 19 ++++- client/src/pages/Typing/index.css | 25 ++++++- client/src/pages/Typing/index.tsx | 11 ++- 15 files changed, 371 insertions(+), 33 deletions(-) create mode 100644 client/src/components/Footer/index.css create mode 100644 client/src/components/Footer/index.tsx diff --git a/client/src/App.tsx b/client/src/App.tsx index 2634fd2..e075456 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -5,14 +5,21 @@ import Languages from 'pages/Languages'; import Typing from 'pages/Typing'; import NotFound from 'pages/NotFound'; +import Footer from 'components/Footer'; + function App() { return ( - - } /> - } /> - } /> - } /> - + <> +
+ + } /> + } /> + } /> + } /> + +
+