import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Download, ShoppingCart } from "lucide-react";
const products = [ { id: 1, name: "Bunga Mawar Bordir", image: "/bordir-mawar.jpg", price: 25000, format: ".dst" }, { id: 2, name: "Logo Motor Custom", image: "/logo-motor.jpg", price: 30000, format: ".dst" } ];
export default function DSTStore() { const handleCheckout = () => { // Simulasi proses checkout alert("Checkout berhasil! Link download akan dikirim ke email Anda."); };
return (
Toko File Bordir Komputer (.DST)
{products.map((product) => (
{product.name}
Format: {product.format}
Rp {product.price.toLocaleString()}
))}
Total: Rp 55.000
); }