From 01bd52df0a7687f50d382455cf1f7b6995859fe3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:43:04 +0000 Subject: [PATCH 1/4] Add src/app/archives/page.tsx --- src/app/archives/page.tsx | 100 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/app/archives/page.tsx diff --git a/src/app/archives/page.tsx b/src/app/archives/page.tsx new file mode 100644 index 0000000..61eb6f3 --- /dev/null +++ b/src/app/archives/page.tsx @@ -0,0 +1,100 @@ +"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 MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; + +export default function ArchivesPage() { + 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 ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 77edbe5121144bb449308e66957381a0cd70505f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:43:05 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0c44edb..c8de7e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,7 +23,7 @@ export default function LandingPage() { contentWidth="small" sizing="largeSizeMediumTitles" background="none" - cardStyle="outline" + cardStyle="solid" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="solid" headingFontWeight="extrabold" @@ -279,4 +279,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 2e9d3af983ab83794cc0cb4a614dd10ef2a26f0d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:43:05 +0000 Subject: [PATCH 3/4] Add src/app/search/page.tsx --- src/app/search/page.tsx | 93 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 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..233443f --- /dev/null +++ b/src/app/search/page.tsx @@ -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 ( + + + + +
+ console.log('Search initiated')} + /> +
+ + +
+
+ ); +} -- 2.49.1 From 20b4c6dd48e78c3026671e08ecc93504ae7277f5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:43:06 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3a5c203..571f6aa 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #f5f5f5; - --primary-cta: #ffdf7d; - --primary-cta-text: #0a0a0a; - --secondary-cta: #1a1a1a; - --secondary-cta-text: #ffffff; - --accent: #b8860b; - --background-accent: #8b6914; + --background: #020617; + --card: #0f172a; + --foreground: #e2e8f0; + --primary-cta: #c4d8f9; + --primary-cta-text: #020617; + --secondary-cta: #041633; + --secondary-cta-text: #e2e8f0; + --accent: #2d30f3; + --background-accent: #1d4ed8; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1