From c945736f4beaadbb90da6b0818b3a4fa0efe2475 Mon Sep 17 00:00:00 2001 From: OmkumarMangukiya Date: Sun, 20 Oct 2024 17:06:31 +0530 Subject: [PATCH] improved ui for Fulltack->React+Nodejs --- .../client/src/App.jsx | 6 + .../client/src/components/Footer.jsx | 54 ++----- .../client/src/components/Header.jsx | 95 ++++++++---- .../client/src/components/card.tsx | 48 ------ .../client/src/components/ui/Button.jsx | 19 +++ .../client/src/components/ui/Card.jsx | 14 ++ .../client/src/components/ui/HoverEffect.tsx | 114 -------------- .../client/src/components/ui/Input.jsx | 17 +++ .../client/src/index.css | 66 ++++++++- .../client/src/pages/ContactUs.jsx | 89 +++++++++++ .../client/src/pages/Home.jsx | 54 ++++++- .../client/src/pages/PrivacyPolicy.jsx | 16 ++ .../client/src/pages/Signin.jsx | 136 +++++++---------- .../client/src/pages/Signup.jsx | 139 ++++++------------ .../client/src/pages/TermsOfService.jsx | 16 ++ 15 files changed, 474 insertions(+), 409 deletions(-) delete mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/components/card.tsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/components/ui/Button.jsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/components/ui/Card.jsx delete mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/components/ui/HoverEffect.tsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/components/ui/Input.jsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/pages/ContactUs.jsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/pages/PrivacyPolicy.jsx create mode 100644 template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/pages/TermsOfService.jsx diff --git a/template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/App.jsx b/template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/App.jsx index 29fbd43..f57548a 100644 --- a/template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/App.jsx +++ b/template/FullStack/React(Frontend)+Nodejs(Backend)/client/src/App.jsx @@ -4,6 +4,9 @@ import Home from './pages/Home' import Signin from './pages/Signin' import Signup from './pages/Signup' import Header from './components/Header' +import ContactUs from './pages/ContactUs' +import TermsOfService from './pages/TermsOfService' +import PrivacyPolicy from './pages/PrivacyPolicy' import './index.css'; import Footer from './components/Footer' @@ -15,6 +18,9 @@ export default function App() { } /> } /> } /> + }> + }> + }>