From 01bd52df0a7687f50d382455cf1f7b6995859fe3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:43:04 +0000 Subject: [PATCH] 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 ( + + + + +
+ +
+ + +
+
+ ); +}