From bb4614f460a98335474e1b8160c8698d1d068e40 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 05:26:26 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ec4952a..8d78bfd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,7 +15,7 @@ export default function LandingPage() { @@ -69,7 +70,7 @@ export default function LandingPage() { animationType="blur-reveal" useInvertedBackground={false} cardClassName="border border-[#8C5638] overflow-hidden" - imageClassName="filter sepia-50 brightness-75 scale-110" + imageClassName="filter grayscale contrast-125 brightness-75 scale-110" products={[ { id: "001", name: "ITEM #001", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/close-up-girl-with-vintage-backpack_23-2148752408.jpg" }, { id: "002", name: "ITEM #002", price: "THE ESTATE", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-heels_23-2149741919.jpg" }, @@ -91,7 +92,7 @@ export default function LandingPage() { mediaAnimation="blur-reveal" faqsAnimation="blur-reveal" buttons={[{ text: "Request Access", href: "/apply" }]} - className="[&_a[href='/apply']]:underline [&_a[href='/apply']]:no-underline [&_a[href='/apply']]:text-inherit [&_a[href='/apply']]:font-normal" + className="[&_a[href='/apply']]:underline [&_a[href='/apply']]:no-underline [&_a[href='/apply']]:text-inherit [&_a[href='/apply']]:font-normal [&_a[href='/apply']]:border [&_a[href='/apply']]:border-black [&_a[href='/apply']]:rounded-none" faqs={[ { id: "q1", title: "How do I access the vault?", content: "Access is currently restricted to invite-only members." }, { id: "q2", title: "Is the leather ethically sourced?", content: "Every hide is vetted for quality and environmental standards." }, @@ -100,6 +101,7 @@ export default function LandingPage() { { id: "q5", title: "Can I visit the boutique?", content: "Boutique appointments are handled via private request." }, ]} textBoxTitleClassName="tracking-[-0.02em]" + mediaClassName="grayscale contrast-125" /> @@ -130,4 +132,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From dec8e97fb694cba30f583619902ef577ba62c002 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 05:26:26 +0000 Subject: [PATCH 2/2] 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 4d26953..9dbd6be 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-montserrat), sans-serif; + font-family: var(--font-archivo), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-cormorant), serif; + font-family: var(--font-archivo), serif; } -- 2.49.1