From 8ef00543b7695c80a5edd41138267660abba6cdc Mon Sep 17 00:00:00 2001 From: Aryan-01-star Date: Thu, 31 Oct 2024 03:38:13 +0530 Subject: [PATCH] FeatureUpdated --- client/src/App.js | 10 +- client/src/Pages/AboutUs.jsx | 2 +- client/src/Pages/CancelReturns.jsx | 2 +- client/src/Pages/Careers.jsx | 2 +- client/src/Pages/Cart.jsx | 2 +- client/src/Pages/Contact.jsx | 2 +- client/src/Pages/Contributors.jsx | 2 +- client/src/Pages/CustomerProfile.jsx | 12 +- client/src/Pages/Faq.jsx | 2 +- client/src/Pages/GiftCards.jsx | 2 +- client/src/Pages/Home.jsx | 309 +++++++++-------- client/src/Pages/Licensing.jsx | 2 +- client/src/Pages/LoginPage.jsx | 4 +- client/src/Pages/Newarrivals.js | 138 +++----- client/src/Pages/Orders.jsx | 2 +- client/src/Pages/PrivacyPolicy.jsx | 2 +- client/src/Pages/Shop.jsx | 2 +- client/src/Pages/SignUpPage.jsx | 4 +- client/src/Pages/Terms.jsx | 2 +- client/src/Pages/Wishlist.jsx | 2 +- client/src/components/NavBar/NavBar.jsx | 327 +++++------------- .../{SearchBar.js => SearchBar.jsx} | 0 client/src/index.js | 4 +- 23 files changed, 322 insertions(+), 514 deletions(-) rename client/src/components/{SearchBar.js => SearchBar.jsx} (100%) diff --git a/client/src/App.js b/client/src/App.js index 53867b4c..2aa5c292 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -2,9 +2,9 @@ import React, { useState, useEffect } from 'react'; import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import './App.css'; import './Animations.css'; -import { Navbar, Footer } from './Components/index.js'; +import { Navbar, Footer } from './components/index.js'; // import { ProfilePage, Product } from './Components/index.js'; -import { Product } from './Components/index.js'; +import { Product } from './components/index.js'; import RomancePage from './Pages/RomancePage.jsx'; import ActionPage from './Pages/ActionPage.jsx'; import ThrillerPage from './Pages/ThrillerPage.jsx'; @@ -26,9 +26,9 @@ import FAQ from "./Pages/Faq.jsx"; import AboutUs from "./Pages/AboutUs.jsx"; import { OrderList } from "./Pages/Orders.jsx"; import Contributors from "./Pages/Contributors.jsx"; -import Preloader from "./Components/Preloader.jsx"; +// import Preloader from "./Components/Preloader.jsx"; import { Toast } from "./Toast/Toast.js"; -import GoToTop from "./Components/GoToTop.jsx"; +import GoToTop from "./components/GoToTop.jsx"; import License from "./Pages/Licensing.jsx"; import CustomerProfile from "./Pages/CustomerProfile.jsx"; import GiftCards from "./Pages/GiftCards.jsx"; @@ -93,7 +93,7 @@ function App() {