Skip to content

Commit afae1db

Browse files
committed
Navbar fixes based on changing locations
1 parent 045baab commit afae1db

File tree

4 files changed

+265
-133
lines changed

4 files changed

+265
-133
lines changed

data.js

+54-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ const products = [
227227
price: 39.99,
228228
sizes: {
229229
M: { chest: 95, neck: 39, shoulder: 46, waist: 80, armLength: 59 },
230-
231230
},
232231
defaultSize: "M",
233232

@@ -242,9 +241,62 @@ const products = [
242241
S: { chest: 92, neck: 39, shoulder: 45, waist: 77, armLength: 57 },
243242
},
244243
defaultSize: "S",
245-
246244
fitPreference: ["Slim", "Regular"],
247245
},
246+
{
247+
id: 21,
248+
name: "Perfect Fit Finder",
249+
description:
250+
"Experience the magic of finding your ideal fit with our advanced sizing technology.",
251+
category: "Smart Sizing",
252+
image: "https://m.media-amazon.com/images/I/51gaACg68DL._SY679_.jpg",
253+
price: 129.99,
254+
sizes: {
255+
S: { chest: 92, neck: 39, shoulder: 45, waist: 77, armLength: 57 },
256+
},
257+
defaultSize: "S",
258+
fitPreference: ["Slim", "Regular"],
259+
stats: {
260+
likes: "2.3k",
261+
views: "12k",
262+
},
263+
},
264+
{
265+
id: 22,
266+
name: "Magical Transformations",
267+
description:
268+
"Discover outfits that transform your look and boost your confidence instantly.",
269+
category: "Style Magic",
270+
image: "https://m.media-amazon.com/images/I/81EHEXU10bL._SY679_.jpg",
271+
price: 149.99,
272+
sizes: {
273+
S: { chest: 92, neck: 39, shoulder: 45, waist: 77, armLength: 57 },
274+
},
275+
defaultSize: "S",
276+
fitPreference: ["Slim", "Regular"],
277+
stats: {
278+
likes: "1.8k",
279+
views: "9k",
280+
},
281+
},
282+
{
283+
id: 23,
284+
name: "Enchanted Everyday",
285+
description:
286+
"Elevate your daily wardrobe with perfectly fitted pieces that feel magical to wear.",
287+
category: "Daily Magic",
288+
image: "https://m.media-amazon.com/images/I/610N1pajwKL._SX522_.jpg",
289+
price: 99.99,
290+
sizes: {
291+
S: { chest: 92, neck: 39, shoulder: 45, waist: 77, armLength: 57 },
292+
},
293+
defaultSize: "S",
294+
fitPreference: ["Slim", "Regular"],
295+
stats: {
296+
likes: "1.5k",
297+
views: "7k",
298+
},
299+
},
248300
];
249301

250302
export default products;

package-lock.json

+46-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919
"axios": "^1.7.2",
2020
"class-variance-authority": "^0.7.0",
2121
"clsx": "^2.1.1",
22+
"framer-motion": "^11.11.8",
2223
"lucide-react": "^0.408.0",
2324
"react": "^18.3.1",
2425
"react-animations": "^1.0.0",
2526
"react-dom": "^18.3.1",
2627
"react-google-one-tap-login": "^0.1.1",
2728
"react-hot-toast": "^2.4.1",
28-
"react-icons": "^5.2.1",
29+
"react-icons": "^5.3.0",
30+
"react-intersection-observer": "^9.13.1",
2931
"react-redux": "^9.1.2",
3032
"react-router-dom": "^6.24.1",
3133
"react-slick": "^0.30.2",

0 commit comments

Comments
 (0)