import { ProductCard } from “@/components/ProductCard”;
import techProducts from “@/assets/tech-products.jpg”;
export const BudgetTechSection = () => {
const budgetTechProducts = [
{
id: 1,
title: “Wireless Mouse”,
description: “Lightweight and precise, perfect for students or professionals working on laptops.”,
price: “$19.99”,
category: “Tech”,
rating: 5,
image: techProducts,
link: “https://amzn.to/45HOi5j”,
},
{
id: 2,
title: “Phone Stand / Holder”,
description: “Ideal for video calls, cooking tutorials, or streaming while keeping your hands free.”,
price: “$14.99”,
category: “Tech”,
rating: 4,
image: techProducts,
link: “https://amzn.to/4oVOHsh”,
},
{
id: 3,
title: “USB Hub”,
description: “Expands one port into several, useful for laptops with limited connectivity.”,
price: “$24.99”,
category: “Tech”,
rating: 5,
image: techProducts,
link: “https://amzn.to/460iW8O”,
},
{
id: 4,
title: “Screen Cleaning Kit”,
description: “Keeps laptops, tablets, and phones spotless and safe from scratches.”,
price: “$12.99”,
category: “Tech”,
rating: 5,
image: techProducts,
link: “#”,
},
{
id: 5,
title: “Cable Organizer”,
description: “Tidy up your workspace with this simple but effective cable management solution.”,
price: “$9.99”,
category: “Tech”,
rating: 4,
image: techProducts,
link: “#”,
},
];
return (
Top 5 Budget Tech Accessories Under $30
Essential tech accessories that won’t break the bank but will make your life easier
))}
);
};
Leave a Reply