From df79d3ad75463984eb8d9eb4ec6401d1cbd883ee Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:47:59 +0000 Subject: [PATCH] Add src/app/browse/page.tsx --- src/app/browse/page.tsx | 214 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 214 insertions(+) create mode 100644 src/app/browse/page.tsx diff --git a/src/app/browse/page.tsx b/src/app/browse/page.tsx new file mode 100644 index 0000000..c02cacd --- /dev/null +++ b/src/app/browse/page.tsx @@ -0,0 +1,214 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Building2, Car, History, Globe, Award, Sparkles, Zap } from "lucide-react"; +import Link from "next/link"; + +export default function BrowsePage() { + 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" }, + ], + }, + ]; + + return ( + + + + + +
+ +
+ + +
+ ); +} \ No newline at end of file