From e0fcf8670afe290a35c1817cf9e17bbedf0b8a57 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:48:03 +0000 Subject: [PATCH] Add src/app/compare/page.tsx --- src/app/compare/page.tsx | 170 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 src/app/compare/page.tsx diff --git a/src/app/compare/page.tsx b/src/app/compare/page.tsx new file mode 100644 index 0000000..b4d8695 --- /dev/null +++ b/src/app/compare/page.tsx @@ -0,0 +1,170 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Building2, Car, History, Globe } from "lucide-react"; + +export default function ComparePage() { + 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