diff --git a/src/app/brands/[slug]/page.tsx b/src/app/brands/[slug]/page.tsx index 99f48a6..e1fc574 100644 --- a/src/app/brands/[slug]/page.tsx +++ b/src/app/brands/[slug]/page.tsx @@ -1,3 +1,310 @@ -export default function BrandPage() { - return
Brand Page
; -} +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; +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 Link from "next/link"; +import { + Car, + Zap, + Award, + Sparkles, + Building2, + History, + Globe, + Mail, +} from "lucide-react"; + +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" }, + ]; + + return ( + + + +
+ +
+ + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file