22 Commits

Author SHA1 Message Date
f71cd1010b Update src/app/page.tsx 2026-03-07 17:46:49 +00:00
0a3d2ad3d8 Update src/app/page.tsx 2026-03-07 17:44:47 +00:00
4d93cada3f Update src/app/page.tsx 2026-03-07 17:43:18 +00:00
fc3cbbefb2 Update src/app/layout.tsx 2026-03-07 17:43:18 +00:00
26e5c24c0a Merge version_3 into main
Merge version_3 into main
2026-03-07 12:28:48 +00:00
b021ac5d9f Update theme colors 2026-03-07 12:28:41 +00:00
80d8582b16 Merge version_3 into main
Merge version_3 into main
2026-03-07 12:09:12 +00:00
5cddeab625 Update src/app/page.tsx 2026-03-07 12:09:08 +00:00
67db3165d4 Merge version_3 into main
Merge version_3 into main
2026-03-07 12:00:31 +00:00
d8648243a5 Update src/app/page.tsx 2026-03-07 12:00:25 +00:00
d05009414b Merge version_3 into main
Merge version_3 into main
2026-03-07 11:58:00 +00:00
a2ed16f6a4 Update src/app/page.tsx 2026-03-07 11:57:55 +00:00
ba9826d3a0 Merge version_2 into main
Merge version_2 into main
2026-03-07 11:39:39 +00:00
8fc52075c1 Update src/app/styles/variables.css 2026-03-07 11:39:35 +00:00
b0b741d905 Update src/app/styles/base.css 2026-03-07 11:39:34 +00:00
37714a520b Update src/app/page.tsx 2026-03-07 11:39:34 +00:00
2c51ea0908 Update src/app/layout.tsx 2026-03-07 11:39:33 +00:00
d217128ecd Merge version_1 into main
Merge version_1 into main
2026-03-07 11:35:06 +00:00
7b922399df Merge version_1 into main
Merge version_1 into main
2026-03-07 11:32:52 +00:00
76c720976b Merge version_1 into main
Merge version_1 into main
2026-03-07 11:27:00 +00:00
2e9b4b3e3f Merge version_1 into main
Merge version_1 into main
2026-03-07 11:25:59 +00:00
dcbf68007b Merge version_1 into main
Merge version_1 into main
2026-03-07 11:24:40 +00:00
4 changed files with 54 additions and 80 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Strategy Sport Academy | Elite Multisport Training Abu Dhabi", description: "Elite athletic training for young athletes ages 6-18. Professional coaching in basketball, skating, skateboarding, football, and Muay Thai. Build excellence and championship character.", keywords: "sports academy Abu Dhabi, elite athletic training, basketball coaching, skating training, martial arts, youth sports, athlete development", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Strategy Sport Academy | Transform Your Mindset, Become a Champion", description: "Elite multisport training programs for young athletes in Abu Dhabi. Professional coaching, world-class facilities, championship results.", type: "website", siteName: "Strategy Sport Academy", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882576380-qz1jyrto.png", alt: "Strategy Sport Academy Elite Training Facility"},
],
},
twitter: {
card: "summary_large_image", title: "Strategy Sport Academy - Elite Athletic Training", description: "Transform your mindset, become a champion. Elite training in 5 sports programs.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882576380-qz1jyrto.png"],
},
};
title: "Strategy Sport Academy", description: "Elite multisport training for athletes of all ages"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -43,13 +43,13 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="STRATEGY SPORT ACADEMY"
description="Elite multisport training for athletes of all ages. Professional coaching in basketball, skating, martial arts, and more. Build discipline, excellence, and winning character."
description="A Place for Every Athlete to Excel. Elite multisport training for athletes of all ages. Professional coaching in basketball, skating, martial arts, and more. Build discipline, excellence, and winning character."
buttons={[
{ text: "Join the Academy Today", href: "#pricing" },
{ text: "Explore Programs", href: "#programs" },
]}
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882576380-qz1jyrto.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772885339901-xktfc7tr.png"
imageAlt="Strategy Sport Academy elite athletic training facility"
mediaAnimation="slide-up"
frameStyle="card"
@@ -63,7 +63,7 @@ export default function LandingPage() {
tag="About Us"
tagIcon={Shield}
title="Transform Mindset, Become a Champion"
description="Strategy Sport Academy is Abu Dhabi's premier multisport training center dedicated to developing elite young athletes. We combine world-class coaching, professional facilities, and a structured athlete development pathway to build not just champions, but leaders with unwavering discipline and character."
description="A Place for Every Athlete to Excel. Strategy Sport Academy is Abu Dhabi's premier multisport training center dedicated to developing elite young athletes. We combine world-class coaching, professional facilities, and a structured athlete development pathway to build not just champions, but leaders with unwavering discipline and character."
metrics={[
{ value: "5", title: "Elite Sports Programs" },
{ value: "50+", title: "Professional Coaches" },
@@ -80,24 +80,24 @@ export default function LandingPage() {
<div id="programs" data-section="programs">
<FeatureCardOne
title="Our Elite Programs"
description="Five comprehensive multisport training programs designed to develop athletic excellence, mental discipline, and competitive success. Each program features professional coaching, structured progression pathways, and access to world-class facilities."
description="A Place for Every Athlete to Excel. Five comprehensive multisport training programs designed to develop athletic excellence, mental discipline, and competitive success. Each program features professional coaching, structured progression pathways, and access to world-class facilities."
tag="Programs"
tagIcon={Zap}
features={[
{
title: "Basketball Training", description: "Elite coaching focusing on fundamentals, competitive strategy, tactical game intelligence, and championship mentality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882576381-5tyqwqo9.png", button: { text: "Learn More", href: "#" },
title: "Basketball Training", description: "Elite coaching focusing on fundamentals, competitive strategy, tactical game intelligence, and championship mentality. Build confidence and leadership both on and off the court.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882576381-5tyqwqo9.png", button: { text: "Learn More", href: "#" },
},
{
title: "Skating Excellence", description: "Professional inline and speed skating programs with expert coaching on technique, agility, endurance, and performance optimization.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882987417-o6pj6eag.png", button: { text: "Learn More", href: "#" },
title: "Skating Excellence", description: "Professional inline and speed skating programs with expert coaching on technique, agility, endurance, and performance optimization. Develop balance and resilience in a supportive environment.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772882987417-o6pj6eag.png", button: { text: "Learn More", href: "#" },
},
{
title: "Skateboarding Mastery", description: "Advanced skateboarding training covering technical skills, street competition techniques, and progressive trick development.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883116523-am8tg4e5.png", button: { text: "Learn More", href: "#" },
title: "Skateboarding Mastery", description: "Advanced skateboarding training covering technical skills, street competition techniques, and progressive trick development. Express yourself while building athletic excellence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883116523-am8tg4e5.png", button: { text: "Learn More", href: "#" },
},
{
title: "Football Excellence", description: "Elite football program combining tactical training, physical conditioning, team strategy, and competitive match preparation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883292962-fcm0qq02.png", button: { text: "Learn More", href: "#" },
title: "Football Excellence", description: "Elite football program combining tactical training, physical conditioning, team strategy, and competitive match preparation. Learn the values of teamwork and collective success.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883292962-fcm0qq02.png", button: { text: "Learn More", href: "#" },
},
{
title: "Muay Thai Elite", description: "Professional martial arts coaching emphasizing technique, discipline, mental toughness, and championship-level competition preparation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883153468-wz07na5x.png", button: { text: "Learn More", href: "#" },
title: "Muay Thai Elite", description: "Professional martial arts coaching emphasizing technique, discipline, mental toughness, and championship-level competition preparation. Build inner strength and self-respect.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaJlRGAuwhxeSgHDYwEa0Lfkdx/uploaded-1772883153468-wz07na5x.png", button: { text: "Learn More", href: "#" },
},
]}
textboxLayout="default"
@@ -112,24 +112,24 @@ export default function LandingPage() {
<div id="coaches" data-section="coaches">
<TeamCardTwo
title="Meet Our Elite Coaches"
description="Our coaching staff brings decades of professional experience, competitive excellence, and proven athlete development expertise to every training session."
description="A Place for Every Athlete to Excel. Our coaching staff brings decades of professional experience, competitive excellence, and proven athlete development expertise to every training session. Each coach is committed to your growth both as an athlete and as a person."
tag="Coaches"
tagIcon={Users}
members={[
{
id: "1", name: "Ali Al-Mansouri", role: "Basketball Director", description: "Former professional basketball player with 15+ years coaching elite athletes. Specializes in youth development and competitive strategy.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-athlete-looking-camera_23-2148162222.jpg", socialLinks: [
id: "1", name: "Ali Al-Mansouri", role: "Basketball Director", description: "Former professional basketball player with 15+ years coaching elite athletes. Specializes in youth development, competitive strategy, and building champions with character.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-athlete-looking-camera_23-2148162222.jpg", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" },
],
},
{
id: "2", name: "Fatima Al-Mazrouei", role: "Skating Coach", description: "National-level competitive skater turned coach. Expert in technique refinement, performance optimization, and athlete mental conditioning.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-happy-young-afro-american-bodybuilder-looking-camera-grinning-confidently-keeping-hands-his-waist-posing-against-white-studio-wall-background-with-copy-space-your-text_343059-465.jpg", socialLinks: [
id: "2", name: "Fatima Al-Mazrouei", role: "Skating Coach", description: "National-level competitive skater turned coach. Expert in technique refinement, performance optimization, and athlete mental conditioning. Dedicated to nurturing confident, resilient athletes.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-happy-young-afro-american-bodybuilder-looking-camera-grinning-confidently-keeping-hands-his-waist-posing-against-white-studio-wall-background-with-copy-space-your-text_343059-465.jpg", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" },
],
},
{
id: "3", name: "Mahmoud Hassan", role: "Muay Thai Specialist", description: "Championship-winning martial arts instructor with international coaching certification. Focuses on discipline, technical excellence, and mental resilience.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-touching-his-beard-grey-wall_114579-30601.jpg", socialLinks: [
id: "3", name: "Mahmoud Hassan", role: "Muay Thai Specialist", description: "Championship-winning martial arts instructor with international coaching certification. Focuses on discipline, technical excellence, mental resilience, and developing well-rounded athletes.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-touching-his-beard-grey-wall_114579-30601.jpg", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" },
],
@@ -145,15 +145,15 @@ export default function LandingPage() {
<div id="achievements" data-section="achievements">
<MetricCardTwo
title="Our Track Record"
description="Measurable success across all programs, with consistent athlete advancement, championship participation, and professional development outcomes."
title="Our Track Record of Excellence"
description="A Place for Every Athlete to Excel. Measurable success across all programs, with consistent athlete advancement, championship participation, and professional development outcomes that speak to our commitment to your success."
tag="Achievements"
tagIcon={Award}
metrics={[
{ id: "1", value: "500+", description: "Young Athletes Trained" },
{ id: "2", value: "25+", description: "Championships Won" },
{ id: "3", value: "98%", description: "Athlete Progression Rate" },
{ id: "4", value: "12+", description: "Years Excellence" },
{ id: "4", value: "12+", description: "Years of Excellence" },
]}
textboxLayout="default"
animationType="slide-up"
@@ -166,22 +166,28 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="What Athletes and Parents Say"
description="Real stories from young athletes and families who have experienced the transformation at Strategy Sport Academy."
description="A Place for Every Athlete to Excel. Real stories from young athletes and families who have experienced the transformation at Strategy Sport Academy. Their success is our greatest achievement."
tag="Testimonials"
tagIcon={Quote}
testimonials={[
{
id: "1", name: "Ahmed Al-Zaabi", role: "Student Athlete - Basketball", testimonial: "The coaching here is world-class. They not only taught me basketball fundamentals but also helped me develop discipline, confidence, and a winning mindset. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-black-basketball-player-holds-ball-grey-background_613910-8374.jpg", imageAlt: "Ahmed Al-Zaabi"},
id: "1", name: "Ahmed Al-Zaabi", role: "Student Athlete - Basketball", testimonial: "The coaching here is world-class. They not only taught me basketball fundamentals but also helped me develop discipline, confidence, and a winning mindset. I feel supported and encouraged every single day. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-black-basketball-player-holds-ball-grey-background_613910-8374.jpg", imageAlt: "Ahmed Al-Zaabi"
},
{
id: "2", name: "Layla Al-Maktoum", role: "Student Athlete - Skating", testimonial: "Strategy Sport Academy transformed my skating abilities. The personalized coaching and structured training programs helped me progress faster than anywhere else.", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-portrait-gray-background_158595-5964.jpg", imageAlt: "Layla Al-Maktoum"},
id: "2", name: "Layla Al-Maktoum", role: "Student Athlete - Skating", testimonial: "Strategy Sport Academy transformed my skating abilities. The personalized coaching and structured training programs helped me progress faster than anywhere else. The coaches genuinely care about your growth.", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-portrait-gray-background_158595-5964.jpg", imageAlt: "Layla Al-Maktoum"
},
{
id: "3", name: "Mohammed Al-Falahi", role: "Parent - Football Program", testimonial: "My son has grown not just as an athlete but as a person. The values instilled by the coaches - discipline, respect, teamwork - are invaluable. We trust them completely.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fit-man-gym_23-2149517268.jpg", imageAlt: "Mohammed Al-Falahi"},
id: "3", name: "Mohammed Al-Falahi", role: "Parent - Football Program", testimonial: "My son has grown not just as an athlete but as a person. The values instilled by the coaches - discipline, respect, teamwork - are invaluable. We trust them completely with our child's development.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fit-man-gym_23-2149517268.jpg", imageAlt: "Mohammed Al-Falahi"
},
{
id: "4", name: "Zainab Al-Marri", role: "Student Athlete - Muay Thai", testimonial: "The Muay Thai program builds real confidence. Beyond the technical skills, I learned mental toughness and self-discipline that I carry into everything I do.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-guy-with-sport-body-morning-stadium-he-wears-black-t-shirt-headphones-he-keeps-muscular-hands-crossed-smiles-camera_197531-1137.jpg", imageAlt: "Zainab Al-Marri"},
id: "4", name: "Zainab Al-Marri", role: "Student Athlete - Muay Thai", testimonial: "The Muay Thai program builds real confidence. Beyond the technical skills, I learned mental toughness and self-discipline that I carry into everything I do. It's changed how I see myself.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-guy-with-sport-body-morning-stadium-he-wears-black-t-shirt-headphones-he-keeps-muscular-hands-crossed-smiles-camera_197531-1137.jpg", imageAlt: "Zainab Al-Marri"
},
{
id: "5", name: "Hassan Al-Hosani", role: "Student Athlete - Skateboarding", testimonial: "Amazing facility and incredibly supportive coaches. They push you to be better while making sure you love what you're doing. That's the perfect balance.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-with-facial-hair_181624-21795.jpg", imageAlt: "Hassan Al-Hosani"},
id: "5", name: "Hassan Al-Hosani", role: "Student Athlete - Skateboarding", testimonial: "Amazing facility and incredibly supportive coaches. They push you to be better while making sure you love what you're doing. That's the perfect balance for real growth.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-with-facial-hair_181624-21795.jpg", imageAlt: "Hassan Al-Hosani"
},
{
id: "6", name: "Amira Al-Zaabi", role: "Parent - Multi-Sport", testimonial: "Our two children attend different programs. Both have shown tremendous growth athletically and personally. The Academy genuinely cares about developing whole athletes.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-ethnic-guy-standing-with-football_23-2148203543.jpg", imageAlt: "Amira Al-Zaabi"},
id: "6", name: "Amira Al-Zaabi", role: "Parent - Multi-Sport", testimonial: "Our two children attend different programs. Both have shown tremendous growth athletically and personally. The Academy genuinely cares about developing whole athletes, not just winning records.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-ethnic-guy-standing-with-football_23-2148203543.jpg", imageAlt: "Amira Al-Zaabi"
},
]}
textboxLayout="default"
animationType="slide-up"
@@ -193,7 +199,7 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Enrollment Plans"
description="Flexible membership options designed for young athletes and families investing in athletic excellence. Choose the plan that fits your goals and commitment level."
description="A Place for Every Athlete to Excel. Flexible membership options designed for young athletes and families investing in athletic excellence. Choose the plan that fits your goals and commitment level."
tag="Pricing"
tagIcon={Star}
plans={[
@@ -203,7 +209,8 @@ export default function LandingPage() {
{ text: "Contact Us", href: "#" },
],
features: [
"2 training sessions per week", "Access to one program", "Professional coaching", "Basic performance tracking", "Member community access"],
"2 training sessions per week", "Access to one program", "Professional coaching", "Basic performance tracking", "Member community access"
],
},
{
id: "2", badge: "Most Popular", badgeIcon: Star,
@@ -212,7 +219,8 @@ export default function LandingPage() {
{ text: "Contact Us", href: "#" },
],
features: [
"4 training sessions per week", "Access to all programs", "Elite coaching staff", "Advanced performance analytics", "Priority facility access", "Tournament participation support"],
"4 training sessions per week", "Access to all programs", "Elite coaching staff", "Advanced performance analytics", "Priority facility access", "Tournament participation support"
]
},
{
id: "3", price: "AED 3,800", name: "Championship Program", buttons: [
@@ -220,7 +228,8 @@ export default function LandingPage() {
{ text: "Contact Us", href: "#" },
],
features: [
"6 training sessions per week", "Unlimited program access", "Personal coaching sessions", "Comprehensive athletic development plan", "VIP facility access", "Competition coaching & preparation", "Nutrition & conditioning guidance"],
"6 training sessions per week", "Unlimited program access", "Personal coaching sessions", "Comprehensive athletic development plan", "VIP facility access", "Competition coaching & preparation", "Nutrition & conditioning guidance"
],
},
]}
textboxLayout="default"
@@ -274,4 +283,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-rajdhani), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-montserrat), sans-serif;
font-family: var(--font-rajdhani), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f5f5f5;
--foreground: #0a0a0a;
--primary-cta: #1f3251;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--secondary-cta-text: #0a0a0a;
--accent: #4a90e2;
--background-accent: #e8f0ff;
--background: #000000;
--card: #1f1f40;
--foreground: #ffffff;
--primary-cta: #ffffff;
--primary-cta-text: #0a051a;
--secondary-cta: #0d0d2b;
--secondary-cta-text: #d4d4f6;
--accent: #3d2880;
--background-accent: #663cff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);