import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Button } from "@/components/ui/button" import Image from "next/image" const products = [ { id: 1, name: "Ev Tipi Çelik Kasa", image: "/images/safe-1.jpg", category: "Ev", }, { id: 2, name: "Ofis Tipi Yanmaz Kasa", image: "/images/safe-2.jpg", category: "Ofis", }, { id: 3, name: "Otel Odası Kasası", image: "/images/safe-3.jpg", category: "Otel", }, { id: 4, name: "Silah Kasası (Tüfek)", image: "/images/safe-4.jpg", category: "Özel", }, { id: 5, name: "Kuyumcu Kasası", image: "/images/safe-5.jpg", category: "Ticari", }, { id: 6, name: "Duvar İçi Gizli Kasa", image: "/images/safe-6.jpg", category: "Ev", }, ] export default function ProductsPage() { return (

Ürün Koleksiyonumuz

Güvenliğiniz için en son teknoloji ile üretilmiş, sertifikalı çelik kasa çözümlerimizi inceleyin.

{products.map((product) => (
{/* Placeholder for real images */}
Görsel: {product.name}
{product.category} {product.name}
))}
) }