From c1a073cdb7b7fbcb7539b7aeeaa7961cce53fb60 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 05:11:33 +0000 Subject: [PATCH] Add src/app/golf-academy/page.tsx --- src/app/golf-academy/page.tsx | 224 ++++++++++++++++++++++++++++++++++ 1 file changed, 224 insertions(+) create mode 100644 src/app/golf-academy/page.tsx diff --git a/src/app/golf-academy/page.tsx b/src/app/golf-academy/page.tsx new file mode 100644 index 0000000..bb7c7c2 --- /dev/null +++ b/src/app/golf-academy/page.tsx @@ -0,0 +1,224 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Sparkles, Users, Award, Phone } from "lucide-react"; + +export default function GolfAcademyPage() { + return ( + + {/* Navbar */} + + + {/* Hero Section */} +
+ +
+ + {/* Academy Programs Section */} +
+ +
+ + {/* Academy Features Section */} +
+ +
+ + {/* Pricing Section */} +
+ +
+ + {/* Contact Section */} +
+ +
+ + {/* Footer */} + +
+ ); +}