Compare commits

...

23 Commits

Author SHA1 Message Date
43d7614ef6 Update src/app/page.tsx 2026-04-25 21:33:22 +00:00
38ae71da99 Merge version_18 into main
Merge version_18 into main
2026-04-25 21:33:00 +00:00
4d6985f397 Update theme colors 2026-04-25 21:32:57 +00:00
8b59301201 Merge version_17 into main
Merge version_17 into main
2026-04-25 21:31:53 +00:00
d5d2600e62 Update theme fonts 2026-04-25 21:31:50 +00:00
0e2db7b01b Update theme fonts 2026-04-25 21:31:49 +00:00
e60bc48b7f Merge version_17 into main
Merge version_17 into main
2026-04-25 21:31:46 +00:00
a87890815c Update theme fonts 2026-04-25 21:31:42 +00:00
31d9541633 Update theme fonts 2026-04-25 21:31:42 +00:00
1a2d2925bc Merge version_17 into main
Merge version_17 into main
2026-04-25 21:31:38 +00:00
0f2cb23bb3 Update theme fonts 2026-04-25 21:31:35 +00:00
143bc69d05 Update theme fonts 2026-04-25 21:31:35 +00:00
507bf1b0c7 Merge version_17 into main
Merge version_17 into main
2026-04-25 21:31:21 +00:00
0a3c50f306 Update theme fonts 2026-04-25 21:31:20 +00:00
781dfb364a Update theme fonts 2026-04-25 21:31:19 +00:00
269a4da254 Update theme fonts 2026-04-25 21:31:18 +00:00
c81d811a5f Update theme fonts 2026-04-25 21:31:17 +00:00
8bd03fb16f Merge version_17 into main
Merge version_17 into main
2026-04-25 21:31:03 +00:00
ff759b8cfc Update theme colors 2026-04-25 21:31:00 +00:00
6d0d8ffa2e Merge version_16 into main
Merge version_16 into main
2026-04-25 21:29:40 +00:00
32d8a2efa2 Merge version_15 into main
Merge version_15 into main
2026-04-25 21:29:35 +00:00
3efd4264c4 Update theme colors 2026-04-25 21:29:34 +00:00
6774f79326 Merge version_14 into main
Merge version_14 into main
2026-04-25 21:29:32 +00:00
4 changed files with 18 additions and 15 deletions

View File

@@ -6,6 +6,11 @@ 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 { Public_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google";
import { Nunito } from "next/font/google";
import { Archivo } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -18,12 +23,13 @@ export const metadata: Metadata = {
}, },
}; };
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -35,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}> <body className={`${openSans.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -9,7 +9,6 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Crown } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -46,8 +45,6 @@ export default function LandingPage() {
variant: "gradient-bars"}} variant: "gradient-bars"}}
title="Set the Scene for a Flawless Event" title="Set the Scene for a Flawless Event"
description="Our trailers offer the comfort of an interior space with the quality of modern hospitality." description="Our trailers offer the comfort of an interior space with the quality of modern hospitality."
tag="Luxury Event Standards"
tagIcon={Crown}
kpis={[ kpis={[
{ {
value: "10+", label: "Counties Served"}, value: "10+", label: "Counties Served"},

View File

@@ -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-open-sans), 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-public-sans), sans-serif; font-family: var(--font-open-sans), sans-serif;
} }

View File

@@ -12,11 +12,11 @@
--background: #ffffff; --background: #ffffff;
--card: #f9f9f9; --card: #f9f9f9;
--foreground: #000612e6; --foreground: #000f06e6;
--primary-cta: #15479c; --primary-cta: #0a7039;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9; --secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6; --secondary-cta-text: #000f06e6;
--accent: #e2e2e2; --accent: #e2e2e2;
--background-accent: #c4c4c4; --background-accent: #c4c4c4;