diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx new file mode 100644 index 0000000..8d12b21 --- /dev/null +++ b/src/app/search/page.tsx @@ -0,0 +1,175 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +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 { Zap, Search } from "lucide-react"; + +export default function SearchPage() { + 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file