Add src/app/search/page.tsx

This commit is contained in:
2026-06-11 10:43:05 +00:00
parent 77edbe5121
commit 2e9d3af983

93
src/app/search/page.tsx Normal file
View File

@@ -0,0 +1,93 @@
"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 ContactCenter from '@/components/sections/contact/ContactCenter';
export default function SearchPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Search", id: "/search" },
{ name: "Archives", id: "/archives" },
{ 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" },
];
const footerColumns = [
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Search", href: "/search" },
{ label: "Archives", href: "/archives" },
{ label: "Matches", href: "/#matches" },
{ label: "Stats", href: "/#stats" }
],
},
{
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" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="small"
sizing="largeSizeMediumTitles"
background="none"
cardStyle="outline"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={navItems}
logoSrc="http://img.b2bpic.net/free-vector/hand-drawn-football-soccer-club-logo_23-2149313711.jpg"
logoAlt="World Cup Hub Logo"
brandName="World Cup Hub"
/>
</div>
<div id="search-section" data-section="search-section">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
tag="Find Anything"
title="Search World Cup Data"
description="Enter keywords to find matches, teams, players, or historical tournaments instantly."
inputPlaceholder="Search for teams, players, matches, or years..."
buttonText="Search"
onSubmit={() => console.log('Search initiated')}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="World Cup Hub"
columns={footerColumns}
copyrightText="© 2024 World Cup Hub. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}