From fc22638a96a1b2c7dd5c8e9bba2bc49cf0d6579d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:40:31 +0000 Subject: [PATCH] Switch to version 1: remove src/app/search/page.tsx --- src/app/search/page.tsx | 92 ----------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 src/app/search/page.tsx diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx deleted file mode 100644 index ad093ce..0000000 --- a/src/app/search/page.tsx +++ /dev/null @@ -1,92 +0,0 @@ -"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 ( - - - - - - - - - - ); -}