diff --git a/src/app/page.jsx b/src/app/page.jsx
index 8b6da3f..d343061 100644
--- a/src/app/page.jsx
+++ b/src/app/page.jsx
@@ -4,25 +4,25 @@ import React from 'react';
import { MessageCircle } from 'lucide-react';
const CarCard = ({ car }) => (
-
+
{car.special && (
-
+
SPECIAL
)}

-
-
+
+
{car.name}
-
+
${car.price.toLocaleString()}
-
+
{car.specs.consumption}
@@ -55,32 +55,32 @@ const HomePage = () => {
return (
-
-
-
-
LOGO
+
-
-
+
+
{cars.map(car => (
))}
-