44 Commits

Author SHA1 Message Date
c359ed912c Merge version_22 into main
Merge version_22 into main
2026-04-22 03:02:49 +00:00
45d40c033a Update src/app/page.tsx 2026-04-22 03:02:46 +00:00
630286f777 Merge version_22 into main
Merge version_22 into main
2026-04-22 02:56:17 +00:00
24213e8859 Update theme colors 2026-04-22 02:56:14 +00:00
dee44af73b Merge version_21 into main
Merge version_21 into main
2026-04-22 02:55:05 +00:00
3b907f4ce9 Update theme colors 2026-04-22 02:55:02 +00:00
5a31087df9 Merge version_20 into main
Merge version_20 into main
2026-04-22 02:55:01 +00:00
645eb05488 Update theme colors 2026-04-22 02:54:58 +00:00
a1bfd2dd5e Merge version_19 into main
Merge version_19 into main
2026-04-22 02:54:57 +00:00
35e7e678bc Update theme colors 2026-04-22 02:54:54 +00:00
3c5836b96e Merge version_18 into main
Merge version_18 into main
2026-04-22 02:54:51 +00:00
52f1ef1b91 Update theme colors 2026-04-22 02:54:45 +00:00
b3ce234f17 Merge version_17 into main
Merge version_17 into main
2026-04-22 02:54:42 +00:00
a497562b9b Update theme colors 2026-04-22 02:54:39 +00:00
93c963187f Merge version_16 into main
Merge version_16 into main
2026-04-22 02:50:00 +00:00
2fad7d79e5 Update src/app/page.tsx 2026-04-22 02:49:57 +00:00
83920947f1 Merge version_15 into main
Merge version_15 into main
2026-04-22 02:48:02 +00:00
2929744db9 Update src/app/page.tsx 2026-04-22 02:47:59 +00:00
addf4afdde Merge version_14 into main
Merge version_14 into main
2026-04-22 02:41:53 +00:00
d12f689a6c Update src/app/page.tsx 2026-04-22 02:41:50 +00:00
65e525d069 Merge version_13 into main
Merge version_13 into main
2026-04-22 02:33:51 +00:00
2d9118c616 Update src/app/styles/variables.css 2026-04-22 02:33:48 +00:00
b1cefa0a92 Update src/app/page.tsx 2026-04-22 02:33:47 +00:00
73c14a47ba Merge version_12 into main
Merge version_12 into main
2026-04-22 02:32:29 +00:00
19f5fa34d6 Update theme colors 2026-04-22 02:32:26 +00:00
e822ff1cad Merge version_11 into main
Merge version_11 into main
2026-04-22 02:31:55 +00:00
0e0f8d879d Update theme colors 2026-04-22 02:31:51 +00:00
9e30f0e5dd Merge version_10 into main
Merge version_10 into main
2026-04-22 02:31:37 +00:00
515afabcaa Update theme colors 2026-04-22 02:31:34 +00:00
3c0b126234 Merge version_9 into main
Merge version_9 into main
2026-04-22 02:31:14 +00:00
5383fe81fa Update theme colors 2026-04-22 02:31:11 +00:00
15e8aeff00 Merge version_8 into main
Merge version_8 into main
2026-04-22 02:31:10 +00:00
33844022f2 Update theme colors 2026-04-22 02:31:07 +00:00
4b23b83110 Merge version_7 into main
Merge version_7 into main
2026-04-22 02:31:00 +00:00
4cf0c3af91 Update theme colors 2026-04-22 02:30:57 +00:00
2326a8865e Merge version_6 into main
Merge version_6 into main
2026-04-22 02:30:35 +00:00
1dd34dc23d Update theme colors 2026-04-22 02:30:31 +00:00
26603b013f Merge version_5 into main
Merge version_5 into main
2026-04-22 02:29:37 +00:00
40fac42cd7 Update theme fonts 2026-04-22 02:29:34 +00:00
3d1eb7b8a9 Update theme fonts 2026-04-22 02:29:33 +00:00
73e6aa651b Merge version_5 into main
Merge version_5 into main
2026-04-22 02:28:29 +00:00
83eb8e3901 Update theme colors 2026-04-22 02:28:26 +00:00
a33856438b Merge version_4 into main
Merge version_4 into main
2026-04-22 02:28:20 +00:00
dc0a854200 Merge version_3 into main
Merge version_3 into main
2026-04-22 02:25:06 +00:00
4 changed files with 27 additions and 26 deletions

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -19,13 +20,11 @@ export const metadata: Metadata = {
},
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -36,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
{children}
<script

View File

@@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
@@ -42,18 +42,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
<HeroBillboardCarousel
background={{ variant: "gradient-bars" }}
title="Elite Soccer Experience in Scottsdale"
description="Premium training grounds and community fields at McDowell Mountain Ranch. Dedicated to developing local talent and fostering active lifestyles."
tag="Premier Soccer Venue"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/kids-playing-football-supervised-by-football-trainer_23-2149684393.jpg?_wi=1", imageAlt: "Soccer field aerial view" },
{ imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-football-field_181624-34967.jpg", imageAlt: "Soccer training grounds" }
{ imageSrc: "https://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707978.jpg?id=32248900", imageAlt: "Professional soccer field aerial view" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CeIrQq3w1bGhAEHxiFxrUprOZT/uploaded-1776825698780-nn0yhvyz.jpg", imageAlt: "Soccer training grounds" },
{ imageSrc: "https://img.b2bpic.net/free-photo/soccer-player-action-stadium_1150-14606.jpg?id=5212266", imageAlt: "Professional soccer field at dusk" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CeIrQq3w1bGhAEHxiFxrUprOZT/uploaded-1776826381616-7adeyzhv.avif", imageAlt: "Children training on soccer field" }
]}
mediaAnimation="slide-up"
rating={5}
ratingText="122+ Verified Reviews"
/>
</div>
@@ -96,7 +95,10 @@ export default function LandingPage() {
{ id: "f2", title: "Walking Trails", content: "Scenic paths around the facility perfect for daily exercise and community health." },
{ id: "f3", title: "Public Amenities", content: "Accessible public restrooms and ample surrounding space for community gatherings." },
]}
buttons={[{ text: "Sign Up For Training", href: "#contact" }]}
buttons={[
{ text: "Sign Up For Training", href: "#contact" },
{ text: "View Programs", href: "#contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/girl-soccer-player-girl-sports-uniform-soccer-field-football-concept_169016-68217.jpg"
mediaAnimation="slide-up"
imageAlt="Soccer field aerial view scottsdale"

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-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--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);