Files
TugasPaaS/src/data/products.js
T
2026-05-19 12:29:55 +07:00

26 lines
551 B
JavaScript

export const products = []
export const categories = [
"Semua",
"Laptop",
"PC",
"Monitor",
"Keyboard",
"Router",
"Switch",
"Server",
"Access Point"
]
export const categoryOptions = [
{ name: "Semua", icon: "Boxes" },
{ name: "Laptop", icon: "Laptop" },
{ name: "PC", icon: "PcCase" },
{ name: "Monitor", icon: "Monitor" },
{ name: "Keyboard", icon: "Keyboard" },
{ name: "Router", icon: "Router" },
{ name: "Switch", icon: "Network" },
{ name: "Server", icon: "Server" },
{ name: "Access Point", icon: "Wifi" }
]