From 367c734a41a72555dfec59138ecee9aa14b2a710 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 01:16:29 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 53 ++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6011750..5f4c57d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,13 +3,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; @@ -94,12 +94,12 @@ export default function LandingPage() { { type: "text", text: "Timeless Style"}, { - type: "text-icon", text: "Ethical Sourcing", icon: Leaf, + type: "text-icon", text: "Ethical Sourcing", icon: Leaf }, { type: "text", text: "Personal Expression"}, { - type: "text-icon", text: "Curated Luxury", icon: Sparkles, + type: "text-icon", text: "Curated Luxury", icon: Sparkles }, { type: "text", text: "Investment Pieces"}, @@ -190,23 +190,27 @@ export default function LandingPage() {
-
-
@@ -314,4 +315,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 69370429ecd64b3de14a40b5be2c8dfe222fc799 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 01:16:29 +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 52de42f..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-open-sans), 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-inter), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1 From e8ce01a30de5ad039729c86c4fd9247161f6cc2d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 01:16:29 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..997e9fc 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; - --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; - --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #e34400; + --primary-cta-text: #ffffff; + --secondary-cta: #010101; + --secondary-cta-text: #ffffff; + --accent: #ff7b05; + --background-accent: #106efb; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1