import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Car, Search } from "lucide-react"; const cars = [ { id: 1, brand: "Volkswagen", model: "Golf TGI", year: 2020, price: "9,900€", image: "/images/golf.jpg", }, { id: 2, brand: "Tesla", model: "Model 3 Juniper", year: 2025, price: "34,500€", image: "/images/model3.jpg", }, ]; export default function CarDealerHomePage() { return (

AutoMarket

{cars.map((car) => ( {car.model}

{car.brand} {car.model}

Έτος: {car.year}

Τιμή: {car.price}

))}
); }