From ff1ec7867c3c2fc842e232c54dc23e9eed54ca55 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:06:30 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 54 ++++++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc22c63..71153bd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; import { Cog, Gauge, ShieldCheck, Type } from "lucide-react"; export default function LandingPage() { @@ -16,12 +16,12 @@ export default function LandingPage() { @@ -32,17 +32,17 @@ export default function LandingPage() { { name: "Home", id: "/"}, { - name: "Products", id: "/products"}, + name: "Products", id: "#product-showcase"}, { - name: "About", id: "/about"}, + name: "About", id: "#brand-story"}, { - name: "Contact", id: "/contact"}, + name: "Contact", id: "#newsletter"}, { - name: "Shop", id: "/shop"}, + name: "Shop", id: "#product-showcase"}, ]} brandName="FLAXR" button={{ - text: "Shop Now", href: "/shop"}} + text: "Shop Now", href: "#product-showcase"}} animateOnLoad={true} /> @@ -56,9 +56,9 @@ export default function LandingPage() { tag="FLAXR" buttons={[ { - text: "Explore Products", href: "/products"}, + text: "Explore Products", href: "#product-showcase"}, { - text: "Shop Now", href: "/shop"}, + text: "Shop Now", href: "#product-showcase"}, ]} mediaItems={[ { @@ -100,37 +100,41 @@ export default function LandingPage() {
-
-- 2.49.1 From 734ff18c2b08b261cbb9410edf39f26302b47901 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:06:30 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index bbb522f..62c2d18 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-source-sans-3), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1 From 9356d6dbca9800ca1bbc47c0c893ddb63aab3f5f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:06:31 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ed88ba7..a03a347 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,11 +13,11 @@ --background: #0a0a0a; --card: #1a1a1a; --foreground: #ffffff; - --primary-cta: #FF6207; + --primary-cta: #ff6207; --primary-cta-text: #ffffff; - --secondary-cta: #1a1a1a; + --secondary-cta: #333333; --secondary-cta-text: #ffffff; - --accent: #FF7B05; + --accent: #ff7b05; --background-accent: #333333; /* text sizing - set by ThemeProvider */ -- 2.49.1