diff --git a/client/package-lock.json b/client/package-lock.json index 9b07533..ed05cba 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -35,6 +35,7 @@ "react-redux": "^9.1.0", "react-router-dom": "^6.22.0", "react-social-login-buttons": "^4.1.0", + "react-toastify": "^10.0.6", "redux": "^5.0.1", "styled-components": "^6.1.8" }, @@ -10457,6 +10458,19 @@ "react": "^16.0.0 || ^17.x || ^18.x" } }, + "node_modules/react-toastify": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/react-toastify/-/react-toastify-10.0.6.tgz", + "integrity": "sha512-yYjp+omCDf9lhZcrZHKbSq7YMuK0zcYkDFTzfRFgTXkTFHZ1ToxwAonzA4JI5CxA91JpjFLmwEsZEgfYfOqI1A==", + "license": "MIT", + "dependencies": { + "clsx": "^2.1.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, "node_modules/react-transition-group": { "version": "4.4.5", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", diff --git a/client/package.json b/client/package.json index 94f19b4..1ba3d87 100644 --- a/client/package.json +++ b/client/package.json @@ -37,6 +37,7 @@ "react-redux": "^9.1.0", "react-router-dom": "^6.22.0", "react-social-login-buttons": "^4.1.0", + "react-toastify": "^10.0.6", "redux": "^5.0.1", "styled-components": "^6.1.8" }, diff --git a/client/src/TrailingCursor.css b/client/src/TrailingCursor.css index 413913f..1f4606f 100644 --- a/client/src/TrailingCursor.css +++ b/client/src/TrailingCursor.css @@ -22,6 +22,7 @@ body { pointer-events: none; transition: transform 0.2s ease, opacity 0.2s ease; opacity: 0.7; + z-index: 9999; } .button:hover .cursor { diff --git a/client/src/components/BuyCard.jsx b/client/src/components/BuyCard.jsx index 2d379e0..f13f509 100644 --- a/client/src/components/BuyCard.jsx +++ b/client/src/components/BuyCard.jsx @@ -16,7 +16,7 @@ function BuyCard({ bogo, mrp, discountPrice, imageUrl, productName, discount, id return (
-
{ +
{ navigate(`/product/${id}`) }}> @@ -47,29 +47,32 @@ function BuyCard({ bogo, mrp, discountPrice, imageUrl, productName, discount, id borderColor: '#54B22C', color: '#249B3E', width: '60px', - borderRadius: '5px', + borderRadius: '75px', border: '1px solid', }}>ADD
))} {count > 0 && ( -
+
{ if (count >= 1 && count < 10) setCount(count + 1); addToCart({ id, productName, discountPrice, imageUrl, count: count + 1 }); }}>+ -
+
{ if (count >= 1) { @@ -86,7 +89,7 @@ function BuyCard({ bogo, mrp, discountPrice, imageUrl, productName, discount, id backgroundColor: '#54B22C', color: 'white', padding: '5px', - borderRadius: '0 17px 0 15px', + borderRadius: '0 13px 0 15px', }}> {discount || parseInt((mrp - discountPrice) / mrp * 100) || '$'}% OFF
diff --git a/client/src/components/Carousel.jsx b/client/src/components/Carousel.jsx index e01804d..f729061 100644 --- a/client/src/components/Carousel.jsx +++ b/client/src/components/Carousel.jsx @@ -12,11 +12,12 @@ const CarouselComponent = () => { PrevIcon={} > {images.map((imageUrl, index) => ( - + diff --git a/client/src/components/TopCategoriesList.jsx b/client/src/components/TopCategoriesList.jsx index 2db16d3..c31c697 100644 --- a/client/src/components/TopCategoriesList.jsx +++ b/client/src/components/TopCategoriesList.jsx @@ -31,7 +31,7 @@ function TopCategoriesList() { {categories.map((category, index) => ( { navigate(`/categories/${encodeURIComponent(category.name.toLowerCase())}`); @@ -40,9 +40,9 @@ function TopCategoriesList() { {category.name} -

{category.name}

+

{category.name}

))} diff --git a/client/src/index.css b/client/src/index.css index 0a4055d..1b21a77 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -14,4 +14,7 @@ body { background-color: #46d346; border-radius: 20px; } +*{ + user-select: none; +}