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() {
-
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; } 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 */