Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4cf0c3af91 | |||
| 1dd34dc23d | |||
| 40fac42cd7 | |||
| 3d1eb7b8a9 | |||
| 83eb8e3901 | |||
| 7bc828d5e7 | |||
| 389e02a51e | |||
| e031904b07 | |||
| b72a7a7a26 | |||
| ed7510b818 | |||
| 38398c3e30 | |||
| 17ce35f829 | |||
| 956779fe58 | |||
| 3bc99b692f |
@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Mulish } from "next/font/google";
|
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",
|
const poppins = Poppins({
|
||||||
subsets: ["latin"],
|
variable: "--font-poppins",
|
||||||
});
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -36,7 +35,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
<body className={`${poppins.variable} antialiased`}>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -21,11 +21,11 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="smallMedium"
|
contentWidth="smallMedium"
|
||||||
sizing="mediumLarge"
|
sizing="mediumLarge"
|
||||||
background="floatingGradient"
|
background="noiseDiagonalGradient"
|
||||||
cardStyle="gradient-mesh"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="layered"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
@@ -96,6 +96,7 @@ export default function LandingPage() {
|
|||||||
{ id: "f2", title: "Walking Trails", content: "Scenic paths around the facility perfect for daily exercise and community health." },
|
{ 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." },
|
{ id: "f3", title: "Public Amenities", content: "Accessible public restrooms and ample surrounding space for community gatherings." },
|
||||||
]}
|
]}
|
||||||
|
buttons={[{ text: "Sign Up For Training", href: "#contact" }]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/girl-soccer-player-girl-sports-uniform-soccer-field-football-concept_169016-68217.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/girl-soccer-player-girl-sports-uniform-soccer-field-football-concept_169016-68217.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
imageAlt="Soccer field aerial view scottsdale"
|
imageAlt="Soccer field aerial view scottsdale"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5faff;
|
--background: #caaeae;
|
||||||
--card: #f1f8ff;
|
--card: #5fc496;
|
||||||
--foreground: #001122;
|
--foreground: #000f06e6;
|
||||||
--primary-cta: #15479c;
|
--primary-cta: #0a7039;
|
||||||
--primary-cta-text: #f5faff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #001122;
|
--secondary-cta-text: #000f06e6;
|
||||||
--accent: #a8cce8;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #7ba3cf;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user