Update src/app/about/page.tsx

This commit is contained in:
2026-02-19 12:44:08 +00:00
parent a30d2b0069
commit 3b7afaa079

View File

@@ -4,7 +4,6 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Heart, Users, Target, Award } from 'lucide-react';
@@ -33,8 +32,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Join Us",
href: "/#pricing"
text: "Join Us", href: "/#pricing"
}}
/>
</div>
@@ -49,6 +47,7 @@ export default function AboutPage() {
{ icon: Award, label: "Community Awards", value: "15" }
]}
useInvertedBackground={false}
metricsAnimation="slide-up"
/>
</div>
@@ -62,43 +61,21 @@ export default function AboutPage() {
{ icon: Award, label: "Character", value: "Foundation" }
]}
useInvertedBackground={true}
metricsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Get answers to common questions about Family Lovers basketball"
tag="Support"
faqs={[
{
id: "1",
title: "When do games take place?",
content: "Our regular season games are held Friday and Saturday evenings from October through March. Please check our schedule page for specific dates and times. All games start at 7:00 PM or 7:30 PM Alabama time."
},
{
id: "2",
title: "How can I buy tickets?",
content: "Tickets can be purchased online through our website, at the arena box office, or by calling our ticketing team at 1-800-LOVERS-1. Season tickets and group packages are also available with special discounts."
},
{
id: "3",
title: "Do you offer youth programs?",
content: "Yes! Family Lovers runs several youth basketball programs including summer camps, weekend clinics, and after-school programs. All are designed to develop skills and build character. Visit our Team page for more information."
},
{
id: "4",
title: "What's your refund policy?",
content: "Tickets are refundable up to 48 hours before game time. Memberships can be canceled anytime with pro-rated refunds. Please contact our support team for specific details about your purchase."
}
<AboutMetric
title="Frequently Asked Questions - Get answers to common questions about Family Lovers basketball including games, tickets, youth programs, and our refund policy."
metrics={[
{ icon: Heart, label: "Game Times", value: "7-7:30 PM" },
{ icon: Users, label: "Youth Programs", value: "Available" },
{ icon: Target, label: "Season Tickets", value: "Discounts" },
{ icon: Award, label: "Refund Policy", value: "48 Hours" }
]}
imageSrc="https://img.b2bpic.net/free-photo/basketball-players-big-professional-arena-game_654080-295.jpg"
imageAlt="Team huddle"
mediaAnimation="entrance-slide"
mediaPosition="right"
faqsAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
metricsAnimation="slide-up"
/>
</div>