import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Input } from "@/components/ui/input"; import { Search } from "lucide-react";const products = [ { title: "Kids Learning Tablet", price: "₦87,110", sold: "83 sold", img: "https://via.placeholder.com/150", }, { title: "4500mAh Car Kit", price: "₦41,636", sold: "328 sold", img: "https://via.placeholder.com/150", }, { title: "Blender Mixer", price: "₦28,275", sold: "24K+ sold", img: "https://via.placeholder.com/150", }, ];export default function TemuDemo() { return (
{/* Header */}
Seasonal Mega Picks
UP TO 80% OFF
{/* Search */}
{/* Highlights */}
Free Shipping
Return damaged items
Refund available
{/* Product Cards */}
{products.map((product, index) => (