From bf9f0e9e9a429bd9c82eba0d7f5d84c7efdb7cda Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:15:18 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 82539b9..bc1ee21 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,23 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function LandingPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Features', id: '/#features' }, + { name: 'Showcase', id: '/#product' }, + { name: 'News', id: '/blog' }, + { name: 'Shop', id: '/shop' }, + { name: 'Team', id: '/#team' }, + { name: 'Contact', id: '/#contact' } + ]; + + const footerColumns = [ + { items: [{ label: 'About Us', href: '/about' }, { label: 'Features', href: '#features' }, { label: 'News', href: '/blog' }] }, + { items: [{ label: 'Community', href: '#product' }, { label: 'Team', href: '#team' }, { label: 'FAQ', href: '#faq' }] }, + { items: [{ label: 'Contact', href: '#contact' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }] } + ]; + return (
@@ -62,7 +70,7 @@ export default function LandingPage() { title="Unite the Fandom" description="From the original trilogy to the latest series, our club is a gathering place for every Star Wars enthusiast. Share theories, debate iconic moments, and immerse yourself in a community that understands the Force." tag="About Our Club" - buttons={[{ text: 'Our Mission', href: '#' }]} + buttons={[{ text: 'Our Mission', href: '/about' }]} imageSrc="https://img.b2bpic.net/free-photo/fencing_654080-2262.jpg" imageAlt="Group of Star Wars fans at a convention" useInvertedBackground={false} @@ -170,7 +178,7 @@ export default function LandingPage() {