Update src/app/page.tsx

This commit is contained in:
2026-06-05 11:00:07 +00:00
parent 83fce1ec06
commit f4e6f04f44

View File

@@ -38,7 +38,7 @@ export default function HomePage() {
brandName="VYNT"
logoSrc="http://img.b2bpic.net/free-vector/r-logo-branding-identity-corporate-vector-logo-design_460848-18723.jpg"
logoAlt="VYNT logo"
navItems={navItems.map((item) => ({ name: item.name, href: item.id }))}
navItems={navItems.map((item) => ({ name: item.name, id: item.id }))}
/>
</div>
@@ -56,19 +56,18 @@ export default function HomePage() {
mediaAnimation="opacity"
rating={5}
ratingText="Trusted by fashion elite"
useInvertedBackground={false}
/>
</div>
<div id="signature-styles" data-section="signature-styles">
<ProductCardThree
products={[
{ id: "hoodie-1", name: "Oversized Hoodie - Black", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-african-american-man-posing-outdoors-paris-happy-smile-fashion-style_1321-3388.jpg?_wi=1", imageAlt: "Oversized black hoodie" },
{ id: "tshirt-1", name: "Heavyweight T-Shirt - Dark Grey", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/man-portrait_1296-637.jpg?_wi=1", imageAlt: "Heavyweight dark grey t-shirt" },
{ id: "sweatpant-1", name: "Premium Sweatpants - Black", price: "$100", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-african-american-woman-wearing-coat-posing-street_181624-28798.jpg?_wi=1", imageAlt: "Premium black sweatpants" },
{ id: "hoodie-2", name: "Oversized Hoodie - Dark Grey", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/portrait-curly-haired-young-man_23-2148892094.jpg?_wi=1", imageAlt: "Oversized dark grey hoodie" },
{ id: "tshirt-2", name: "Heavyweight T-Shirt - White", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-girl-white-oversized-tshirt-blue-jeans-posing-gray-background_89887-969.jpg?_wi=1", imageAlt: "Heavyweight white t-shirt" },
{ id: "sweatpant-2", name: "Premium Sweatpants - Dark Grey", price: "$100", imageSrc: "http://img.b2bpic.net/free-photo/girl-walking-seashore-sea-sand-ocean-girl-headphones-listening-music_169016-67659.jpg?_wi=1", imageAlt: "Premium dark grey sweatpants" },
{ id: "hoodie-1", name: "Oversized Hoodie - Black", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-african-american-man-posing-outdoors-paris-happy-smile-fashion-style_1321-3388.jpg", imageAlt: "Oversized black hoodie" },
{ id: "tshirt-1", name: "Heavyweight T-Shirt - Dark Grey", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/man-portrait_1296-637.jpg", imageAlt: "Heavyweight dark grey t-shirt" },
{ id: "sweatpant-1", name: "Premium Sweatpants - Black", price: "$100", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-african-american-woman-wearing-coat-posing-street_181624-28798.jpg", imageAlt: "Premium black sweatpants" },
{ id: "hoodie-2", name: "Oversized Hoodie - Dark Grey", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/portrait-curly-haired-young-man_23-2148892094.jpg", imageAlt: "Oversized dark grey hoodie" },
{ id: "tshirt-2", name: "Heavyweight T-Shirt - White", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-girl-white-oversized-tshirt-blue-jeans-posing-gray-background_89887-969.jpg", imageAlt: "Heavyweight white t-shirt" },
{ id: "sweatpant-2", name: "Premium Sweatpants - Dark Grey", price: "$100", imageSrc: "http://img.b2bpic.net/free-photo/girl-walking-seashore-sea-sand-ocean-girl-headphones-listening-music_169016-67659.jpg", imageAlt: "Premium dark grey sweatpants" },
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"