From 56de114f8988195755ef53ec34946c6a4a611ff2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 10:39:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 91 ++++++++++++++++++++++-------------------------- 1 file changed, 41 insertions(+), 50 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0c44edb..ecd038d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,43 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import { Flag, History, Trophy } from "lucide-react"; +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 LandingPage() { return (