diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8915545..c8024de 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,8 +11,7 @@ import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function AboutPage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Membership", href: "/membership" }, @@ -20,29 +19,27 @@ export default function AboutPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Discord Server", href: "https://discord.com" }, - { label: "Event Calendar", href: "/events" }, - { label: "Report an Issue", href: "/contact" }, + { label: "Member Directory", href: "#members" }, + { label: "Event Calendar", href: "#events" }, + { label: "Report an Issue", href: "#contact" }, ], }, { - title: "Resources", - items: [ - { label: "FAQ", href: "/contact" }, - { label: "Support", href: "/contact" }, + title: "Resources", items: [ + { label: "FAQ", href: "#faq" }, + { label: "Support", href: "#contact" }, { label: "Community Guidelines", href: "#" }, { label: "Blog", href: "#" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, - { label: "Contact Us", href: "/contact" }, + { label: "Contact Us", href: "#contact" }, ], }, ]; @@ -54,7 +51,7 @@ export default function AboutPage() { borderRadius="soft" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="double-inset" secondaryButtonStyle="glass" @@ -78,10 +75,7 @@ export default function AboutPage() {