Files
aa0cb1c4-7069-4d2d-85fd-4f1…/src/app/classes/page.tsx

124 lines
4.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import Link from "next/link";
export default function ClassesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Trainers", id: "/trainers" },
{ name: "Reviews", id: "/reviews" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Classes", href: "/classes" },
],
},
{
items: [
{ label: "Our Trainers", href: "/trainers" },
{ label: "Reviews", href: "/reviews" },
{ label: "Book Now", href: "/contact" },
],
},
{
items: [
{ label: "Phone: 981-3628585", href: "tel:9813628585" },
{ label: "Email: info@ironfist.com", href: "mailto:info@ironfist.com" },
{ label: "Banepa, Nepal", href: "#" },
],
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Contact Form", href: "/contact" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="floatingGradient"
cardStyle="glass-depth"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Book Now", href: "/contact" }}
brandName="Iron Fist"
/>
</div>
<div id="classes" data-section="classes">
<FeatureCardTwentyFour
features={[
{
id: "beginner",
title: "Beginner Classes",
author: "Perfect for New Members",
description:
"Learn the fundamentals of boxing including proper stance, footwork, punching techniques, and basic combinations. Our beginner classes run daily at 6:30 AM, 12:00 PM, and 5:00 PM with certified instructors. No experience necessary.",
tags: ["Beginner", "Fundamentals", "Daily Sessions"],
imageSrc:
"http://img.b2bpic.net/free-photo/side-view-coach-helping-girl_23-2150363737.jpg?_wi=2",
imageAlt: "Beginner boxing class",
},
{
id: "advanced",
title: "Advanced Training",
author: "For Experienced Boxers",
description:
"Intensive training for experienced boxers focusing on advanced techniques, competitive strategies, and ring conditioning. Sessions include heavy bag work, sparring, and personalized coaching. Available by appointment for members with 3+ months experience.",
tags: ["Advanced", "Competitive", "Intensive"],
imageSrc:
"http://img.b2bpic.net/free-photo/side-view-male-trainer-practicing-with-female-boxer-protective-gloves_23-2148426206.jpg?_wi=2",
imageAlt: "Advanced boxing training",
},
]}
animationType="slide-up"
title="Boxing Classes & Programs"
description="Comprehensive training programs designed for every level and goal"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Ready to Train?"
title="Book Your First Class Today"
description="Choose from flexible class schedules and get paired with a trainer who matches your goals. Start your boxing journey with Iron Fist Boxing Club."
buttons={[
{ text: "Schedule Your Class", href: "/contact" },
{ text: "View Pricing", href: "/contact" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis columns={footerColumns} logoText="IRON FIST" />
</div>
</ThemeProvider>
);
}