diff --git a/src/app/brands/[slug]/page.tsx b/src/app/brands/[slug]/page.tsx index 5c3aa0f..a84d517 100644 --- a/src/app/brands/[slug]/page.tsx +++ b/src/app/brands/[slug]/page.tsx @@ -3,53 +3,34 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Car, Award, Zap } from "lucide-react"; +import Link from "next/link"; +import { + Car, + Zap, + Award, + Sparkles, + Building2, + History, + Globe, + Mail, +} from "lucide-react"; -export default function BrandDetailPage() { +export default function BrandPage({ params }: { params: { slug: string } }) { const navItems = [ - { name: "Search", id: "search" }, - { name: "Browse", id: "browse" }, - { name: "Compare", id: "compare" }, - { name: "Timeline", id: "timeline" }, - { name: "About", id: "about" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Search Database", href: "/search" }, - { label: "Browse Vehicles", href: "/browse" }, - { label: "Compare Cars", href: "/compare" }, - { label: "Timeline Explorer", href: "/timeline" }, - ], - }, - { - items: [ - { label: "Brand Directory", href: "/brands" }, - { label: "Model Guide", href: "/models" }, - { label: "Specifications", href: "/specs" }, - { label: "Production Data", href: "/production" }, - ], - }, - { - items: [ - { label: "About Us", href: "/about" }, - { label: "Help & Support", href: "/help" }, - { label: "Contact", href: "/contact" }, - { label: "Contribute Data", href: "/contribute" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "/privacy" }, - { label: "Terms of Service", href: "/terms" }, - { label: "Data Attribution", href: "/attribution" }, - { label: "Sitemap", href: "/sitemap" }, - ], - }, + { name: "Search", id: "/search" }, + { name: "Browse", id: "/browse" }, + { name: "Compare", id: "/compare" }, + { name: "Timeline", id: "/timeline" }, + { name: "About", id: "/about" }, ]; return ( @@ -59,7 +40,7 @@ export default function BrandDetailPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="solid" @@ -67,152 +48,262 @@ export default function BrandDetailPage() { > -
+
-
- -
- -
- +
-