From 008b53d087f5668dc4e26419e6ee5e14dfc3a7e8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:20:19 +0000 Subject: [PATCH] Add src/app/brands/page.tsx --- src/app/brands/page.tsx | 69 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/brands/page.tsx diff --git a/src/app/brands/page.tsx b/src/app/brands/page.tsx new file mode 100644 index 0000000..4f426aa --- /dev/null +++ b/src/app/brands/page.tsx @@ -0,0 +1,69 @@ +'use client'; + +import { ThemeProvider } from '@/components/theme/ThemeProvider'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import Link from 'next/link'; + +const BRANDS = [ + { id: 'toyota', name: 'Toyota', models: 15, description: 'Reliable and fuel-efficient vehicles' }, + { id: 'honda', name: 'Honda', models: 12, description: 'Innovation and performance' }, + { id: 'ford', name: 'Ford', models: 18, description: 'Trucks and SUVs for every need' }, + { id: 'bmw', name: 'BMW', models: 10, description: 'Luxury and performance' }, + { id: 'mercedes', name: 'Mercedes-Benz', models: 14, description: 'Premium luxury vehicles' }, + { id: 'audi', name: 'Audi', models: 11, description: 'German engineering excellence' }, + { id: 'tesla', name: 'Tesla', models: 5, description: 'Electric vehicles and innovation' }, + { id: 'chevrolet', name: 'Chevrolet', models: 16, description: 'American-made quality' }, +]; + +export default function BrandsPage() { + return ( + + + +
+
+

Car Brands

+

Explore all available car brands and find your perfect match

+ +
+ {BRANDS.map((brand) => ( + +
+
+ {brand.name.charAt(0)} +
+

{brand.name}

+

{brand.description}

+
+ {brand.models} models + +
+
+ + ))} +
+
+
+
+ ); +}