What's Trending

Jabra Evolve 2 65 Flex

Jabra Evolve 2 65 Flex

$239

Base Price

From morning meetings to afternoon presentations, the Jabra Evolve2 65 Flex keeps you sharp in any office setting. Its compact fold-and-go design, premium sound, Hybrid ANC, and AirComfort technology ensure all-day focus and comfort, no matter where you work.
Nature's Bounty - Calcium, Magnesium, Zinc - 100 Caplets - 12 pack

Nature's Bounty - Calcium, Magnesium, Zinc - 100 Caplets - 12 pack

$42

Nature's Bounty Calcium, Magnesium, Zinc supports strong bones, muscles, and immunity. This 12-pack of 100 caplets ensures daily wellness with trusted, non-GMO ingredients.
ThinkPad X1 Carbon Gen 11 (14” Intel)
Popular

ThinkPad X1 Carbon Gen 11 (14” Intel)

$1,453.05

Base Price

The ThinkPad X1 Carbon Gen 11 is built for the modern office—powerful, lightweight, and ultra-durable. Featuring Intel processors for top-tier performance, all-day battery life, and enterprise-grade security, it keeps you productive wherever work takes you.
Nespresso - Lattissima One

Nespresso - Lattissima One

$219.99

The Nespresso Lattissima One delivers barista-quality lattes and cappuccinos at home with one-touch milk frothing. Sleek, compact, and easy to use—perfect for effortless coffee indulgence.

Basic support

Retail catalogs

Order tracking

import { useState } from "react"; export default function Marketplace() { const categories = { "IT Hardware": { Headsets: ["Bose", "Logitech", "Jabra"], Computers: ["Apple", "Dell", "HP"], Monitors: ["LG", "Samsung", "Dell"], Accessories: ["Logitech", "Razer", "Corsair"], }, }; const products = { Bose: ["Bose 700", "Bose QC35", "Bose QC45"], Logitech: ["Logitech G Pro X", "Logitech Zone", "Logitech H600"], Jabra: ["Jabra Evolve 65", "Jabra Elite 85h", "Jabra Speak 750"], Apple: ["MacBook Pro 16", "MacBook Air M2", "iMac 24"], Dell: ["XPS 13", "XPS 15", "Latitude 7420"], HP: ["HP Spectre x360", "HP Envy 15", "HP EliteBook 840"], LG: ["LG UltraGear 27", "LG 32UN880", "LG 34WN80C"], Samsung: ["Samsung Odyssey G7", "Samsung Smart Monitor M8", "Samsung Space Monitor"], Razer: ["Razer BlackWidow", "Razer DeathAdder", "Razer Kraken"], Corsair: ["Corsair K70", "Corsair HS70", "Corsair MM300"], }; const [selectedCategory, setSelectedCategory] = useState(null); const [selectedSubCategory, setSelectedSubCategory] = useState(null); const [selectedBrand, setSelectedBrand] = useState(null); const [searchTerm, setSearchTerm] = useState(""); const handleSubCategoryChange = (subCategory) => { setSelectedSubCategory(subCategory); setSelectedBrand(null); }; const handleBrandChange = (brand) => { setSelectedBrand(brand); }; const filteredProducts = selectedBrand ? products[selectedBrand].filter((item) => item.toLowerCase().includes(searchTerm.toLowerCase())) : []; return (

Filters

setSearchTerm(e.target.value)} /> {Object.keys(categories).map((category) => (

{category}

{Object.keys(categories[category]).map((subCategory) => (
handleSubCategoryChange(subCategory)} /> {selectedSubCategory === subCategory && (
{categories[category][subCategory].map((brand) => (
handleBrandChange(brand)} />
))}
)}
))}
))}

Products

{selectedBrand ? ( filteredProducts.length > 0 ? (
    {filteredProducts.map((item, index) => (
  • {item}
  • ))}
) : (

No products found.

) ) : (

Select a brand to view products.

)}
); }