diff --git a/src/app/browse/page.tsx b/src/app/browse/page.tsx index c79d3f2..969219b 100644 --- a/src/app/browse/page.tsx +++ b/src/app/browse/page.tsx @@ -2,56 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import Link from "next/link"; -import { Zap, Award, Sparkles, Car } from "lucide-react"; +import { Compass } from "lucide-react"; export default function BrowsePage() { - const navItems = [ - { name: "Search", id: "/" }, - { name: "Browse", id: "/browse" }, - { name: "Compare", id: "/compare" }, - { name: "Timeline", id: "/" }, - { name: "About", id: "/" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Search Database", href: "/" }, - { label: "Browse Vehicles", href: "/browse" }, - { label: "Compare Cars", href: "/compare" }, - { label: "Timeline Explorer", href: "/" }, - ], - }, - { - items: [ - { label: "Brand Directory", href: "/" }, - { label: "Model Guide", href: "/" }, - { label: "Specifications", href: "/" }, - { label: "Production Data", href: "/" }, - ], - }, - { - items: [ - { label: "About Us", href: "/" }, - { label: "Help & Support", href: "/" }, - { label: "Contact", href: "/" }, - { label: "Contribute Data", href: "/" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "/" }, - { label: "Terms of Service", href: "/" }, - { label: "Data Attribution", href: "/" }, - { label: "Sitemap", href: "/" }, - ], - }, - ]; - return ( -
- + -
- -
); -} \ No newline at end of file +}