From d51467609925dfdd3b5d58b7d2a49eedba510437 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:32:12 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0de17e4..a7841e6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,14 +13,14 @@ import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function LandingPage() { return ( @@ -75,8 +75,8 @@ export default function LandingPage() { autoPlay={true} autoPlayInterval={5000} className="w-full" - titleClassName="text-4xl md:text-5xl font-bold" - descriptionClassName="text-base md:text-lg" + titleClassName="text-4xl md:text-5xl font-semibold" + descriptionClassName="text-base md:text-lg text-opacity-90" buttonClassName="px-6 py-3" /> @@ -131,7 +131,7 @@ export default function LandingPage() { { text: "Our Story", href: "#" } ]} buttonAnimation="slide-up" - useInvertedBackground={false} + useInvertedBackground={true} /> -- 2.49.1 From 90b3c12682cbd75e6ee2546bdbdbb1b0515d8329 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:32:12 +0000 Subject: [PATCH 2/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index dd1067d..61910a9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,12 +10,12 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #faf8f3; + --background: #faf8f6; --card: #ffffff; - --foreground: #2b1810; - --primary-cta: #8b6f47; + --foreground: #3d2817; + --primary-cta: #8b5a3c; --primary-cta-text: #f5f5f5; - --secondary-cta: #ffffff; + --secondary-cta: #f5f1e8; --secondary-cta-text: #1c1c1c; --accent: #d4a574; --background-accent: #e8dcc8; -- 2.49.1 From 02f2cc63981e3d40fcf665799e83b3e8bd2be886 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:46:56 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a7841e6..cee13eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import MediaAbout from "@/components/sections/about/MediaAbout"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Link from "next/link"; export default function LandingPage() { return ( @@ -27,11 +28,11 @@ export default function LandingPage() {