From 101e49b692d48ceef0015be94df9189b239eefad Mon Sep 17 00:00:00 2001 From: Abhinav Shinde <143414991+Abhi9shinde@users.noreply.github.com> Date: Mon, 13 Jan 2025 19:40:42 +0530 Subject: [PATCH] Fixed Mistake --- src/componets/Navitems.js | 50 +++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/componets/Navitems.js b/src/componets/Navitems.js index 4dc44e2..959e890 100644 --- a/src/componets/Navitems.js +++ b/src/componets/Navitems.js @@ -31,39 +31,39 @@ export const navItems = [ }, ]; -export const productDropdown =[ - { - id:1, - title:"Shop", - path:"./shop", - cName:"submenu-item", - }, +export const productDropdown = [ + { + id: 1, + title: "Shop", + path: "./shop", + cName: "submenu-item", + }, - { - id:2, - title:"Premium Beans", - path:"./premiumBeans", - cName:"submenu-item", - }, + { + id: 2, + title: "Premium Beans", + path: "./premiumBeans", + cName: "submenu-item", + }, - { - id:3, - title:"Expert Baristas", - path:"./expertbaristas", - cName:"submenu-item", - }, + { + id: 3, + title: "Expert Baristas", + path: "./expertbaristas", + cName: "submenu-item", + }, ]; export const ourstoryDropdown = [ { id: 1, - title: "about", + title: "About", path: "./about", cName: "submenu-item", }, { id: 2, - title: "testimonials", + title: "Testimonials", path: "./testimonial", cName: "submenu-item", }, @@ -72,13 +72,13 @@ export const ourstoryDropdown = [ export const userLogoutDropdown = [ { id: 1, - title: "login", + title: "Login", path: "./login", cName: "submenu-item", }, { id: 2, - title: "register", + title: "Register", path: "./register", cName: "submenu-item", }, @@ -87,13 +87,13 @@ export const userLogoutDropdown = [ export const userLoginDropdown = [ { id: 1, - title: "cart", + title: "Cart", path: "./cart", cName: "submenu-item", }, { id: 2, - title: "profile", + title: "Profile", path: "./profile", cName: "submenu-item", },