4 Commits

Author SHA1 Message Date
09023d5756 Update src/app/page.tsx 2026-04-05 05:26:58 +00:00
dec8e97fb6 Update src/app/styles/base.css 2026-04-05 05:26:26 +00:00
bb4614f460 Update src/app/page.tsx 2026-04-05 05:26:26 +00:00
081247407c Merge version_7 into main
Merge version_7 into main
2026-04-05 05:17:11 +00:00
2 changed files with 8 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ export default function LandingPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="pill" borderRadius="rounded"
contentWidth="small" contentWidth="small"
sizing="largeSmallSizeMediumTitles" sizing="largeSmallSizeMediumTitles"
background="none" background="none"
@@ -50,6 +50,7 @@ export default function LandingPage() {
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/rough-concrete-wall-surface_23-2148413267.jpg?q=80&w=800&blur=5&filter=grayscale", imageAlt: "Sepia architectural" }, { id: "6", imageSrc: "http://img.b2bpic.net/free-photo/rough-concrete-wall-surface_23-2148413267.jpg?q=80&w=800&blur=5&filter=grayscale", imageAlt: "Sepia architectural" },
]} ]}
titleClassName="tracking-[-0.02em]" titleClassName="tracking-[-0.02em]"
carouselClassName="grayscale contrast-125"
/> />
</div> </div>
@@ -69,7 +70,7 @@ export default function LandingPage() {
animationType="blur-reveal" animationType="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
cardClassName="border border-[#8C5638] overflow-hidden" cardClassName="border border-[#8C5638] overflow-hidden"
imageClassName="filter sepia-50 brightness-75 scale-110" imageClassName="filter grayscale contrast-125 brightness-75 scale-110"
products={[ 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: "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" }, { 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" mediaAnimation="blur-reveal"
faqsAnimation="blur-reveal" faqsAnimation="blur-reveal"
buttons={[{ text: "Request Access", href: "/apply" }]} 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={[ faqs={[
{ id: "q1", title: "How do I access the vault?", content: "Access is currently restricted to invite-only members." }, { 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." }, { 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." }, { id: "q5", title: "Can I visit the boutique?", content: "Boutique appointments are handled via private request." },
]} ]}
textBoxTitleClassName="tracking-[-0.02em]" textBoxTitleClassName="tracking-[-0.02em]"
mediaClassName="grayscale contrast-125"
/> />
</div> </div>
@@ -130,4 +132,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-archivo), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-cormorant), serif; font-family: var(--font-archivo), serif;
} }