Update src/app/page.tsx

This commit is contained in:
2026-04-06 17:36:06 +00:00
parent 85aa648d45
commit 040f650003

View File

@@ -27,8 +27,8 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Stories", id: "features" },
{ name: "Collections", id: "products" },
{ name: "Editorials", id: "features" },
{ name: "Archives", id: "products" },
{ name: "Insights", id: "testimonials" },
]}
brandName="EDITORIAL"
@@ -56,8 +56,8 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardTwentyFour
animationType="slide-up"
textboxLayout="split-description"
animationType="blur-reveal"
textboxLayout="inline-image"
useInvertedBackground={false}
features={[
{
@@ -70,15 +70,15 @@ export default function LandingPage() {
id: "f3", title: "Neo-Nostalgia", author: "L. Vance", description: "How 90s subcultures are informing 2025 street aesthetics.", tags: ["Street", "Subculture"],
imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-2703.jpg"},
]}
title="VANGUARD STORIES"
description="Uncovering the narratives behind the most provocative collections of the season."
title="EDITORIAL HIGHLIGHTS"
description="A curation of the season's most essential visual narratives."
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
animationType="slide-up"
textboxLayout="split"
animationType="blur-reveal"
textboxLayout="inline-image"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
products={[
@@ -89,8 +89,8 @@ export default function LandingPage() {
{
id: "p3", name: "Noir Boot", price: "€600", variant: "Ed. 02", imageSrc: "http://img.b2bpic.net/free-photo/close-up-red-sparks-glitter_23-2149224056.jpg"},
]}
title="CURATED ARCHIVE"
description="Selected pieces from the latest runway movements."
title="FEATURED ARTICLES"
description="Deep-dive editorials into the seasons most provocative collections."
/>
</div>
@@ -105,7 +105,7 @@ export default function LandingPage() {
id: "t2", title: "Provocative", quote: "Editorial excellence in every frame. Unmatched perspective.", name: "B. Chen", role: "Editor-in-Chief", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-posing-black-white_23-2149411413.jpg"},
]}
title="CRITICAL VOICES"
description="What the industry leaders are reading."
description="Perspectives from the vanguard of industry leaders."
/>
</div>
@@ -121,4 +121,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}