import React from 'react'; import { Pencil, Trash, Plus } from 'lucide-react'; const AdminDashboard = () => { // Dados de exemplo (depois virĂ£o do backend) const cars = [ { id: 1, name: 'BMW M4 2024', price: 75000, image: '/api/placeholder/200/150', isSpecial: true }, { id: 2, name: 'Mercedes-Benz C-Class 2015', price: 35000, image: '/api/placeholder/200/150', isSpecial: true } ]; return (
LOGO
Admin Panel
{/* Add New Car Button */}
{/* Cars List */}

Cars Management

{cars.map((car) => ( ))}
Image Name Price Special Actions
{car.name} {car.name} ${car.price.toLocaleString()} {car.isSpecial ? ( Special ) : '-'}
); }; export default AdminDashboard;