diff --git a/src/app/page.tsx b/src/app/page.tsx index e1817c1..385ea8e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,7 @@ "use client"; import Link from "next/link"; +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"; @@ -12,27 +13,61 @@ 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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Car, + Zap, Award, Sparkles, - Zap, Building2, History, Globe, Mail, } from "lucide-react"; -const navItems = [ - { name: "Search", id: "search" }, - { name: "Browse", id: "browse" }, - { name: "Compare", id: "compare" }, - { name: "Timeline", id: "timeline" }, - { name: "About", id: "about" }, -]; - export default function HomePage() { + 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: "/" }, + { label: "Browse Vehicles", href: "/search" }, + { label: "Compare Cars", href: "/" }, + { 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 ( - {/* Navbar */} - {/* Hero Section */}
- {/* Popular Brands Section */} - {/* Featured Vehicles Section */} - {/* Browse by Decade Section */}
- {/* Legendary Cars Section */}
- {/* Metrics Section */}
- {/* About Section */}
- {/* FAQ Section */}
- {/* CTA Section */}
- {/* Footer */}
); -} +} \ No newline at end of file