From f7eea78b263449fe5fbcbdcb2ae18c1b8abcca35 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 18:56:24 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b2151be..d592c84 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -20,6 +20,7 @@ export const metadata: Metadata = { }, }; + const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] }); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"] }); -- 2.49.1 From f41a285c1bdd0331effde0dd9bc85ff25508ba40 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 18:56:24 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 140 +++++++++++++++++++++++------------------------ 1 file changed, 67 insertions(+), 73 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 49f9fa7..2a54d66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,70 +3,51 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; export default function LandingPage() { return (
@@ -74,60 +55,73 @@ export default function LandingPage() { + + +
+ +
+ +
-
); -} +} \ No newline at end of file -- 2.49.1 From 471437f11256af36871b3e2c57aed9953c897360 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 18:56:25 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index aa45f13..ca0f751 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-playfair), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; -- 2.49.1 From 85388263a299186dee6be632d60e6eb8b24c992e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 18:56:25 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d0f8a09..a2f09f2 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -15,7 +15,7 @@ --foreground: #F0E6D3; --primary-cta: #B5906A; --primary-cta-text: #0D0D0D; - --secondary-cta: #B5906A; + --secondary-cta: #1A1A1A; --secondary-cta-text: #F0E6D3; --accent: #B5906A; --background-accent: #1A1A1A; -- 2.49.1