From 1ebf92ad02e1912e13e199097d46e96c11bbdb0d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:39:15 +0000 Subject: [PATCH] Add src/app/search/page.tsx --- src/app/search/page.tsx | 92 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/app/search/page.tsx diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx new file mode 100644 index 0000000..60ae204 --- /dev/null +++ b/src/app/search/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Archives", id: "/archives" }, + { name: "Search", id: "/search" }, + { name: "Top Scorers", id: "/top-scorers" }, + { name: "About", id: "/#about" }, + { name: "Matches", id: "/#matches" }, + { name: "Stats", id: "/#stats" }, + { name: "Fans Say", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + { name: "Theme", id: "/theme" } +]; + +const footerColumns = [ + { + title: "Navigate", items: [ + { label: "Home", href: "/" }, + { label: "Matches", href: "/#matches" }, + { label: "Stats", href: "/#stats" }, + { label: "Archives", href: "/archives" }, + ], + }, + { + title: "Resources", items: [ + { label: "FAQ", href: "/#faq" }, + { label: "About Us", href: "/#about" }, + { label: "Contact", href: "/#contact" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" }, + ], + }, +]; + +export default function SearchPage() { + return ( + + + + + + + + + + ); +}