Update src/app/page.tsx

This commit is contained in:
2026-03-15 16:37:15 +00:00
parent 894b231081
commit cd2e6b3c93

View File

@@ -87,7 +87,8 @@ export default function LandingPage() {
features={[
{
id: "essentials", title: "Essentials", description: "Timeless basics that form the foundation of any wardrobe. Quality fabrics, perfect fit, everyday staples.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/different-zero-waste-products-with-copy-space_23-2148491097.jpg", imageAlt: "Folded quality casual apparel"},
imageSrc: "http://img.b2bpic.net/free-photo/different-zero-waste-products-with-copy-space_23-2148491097.jpg", imageAlt: "Folded quality casual apparel"
},
items: [
{ icon: Check, text: "Premium fabrics" },
{ icon: Check, text: "Perfect fit" },
@@ -97,7 +98,8 @@ export default function LandingPage() {
},
{
id: "layers", title: "Layers & Outerwear", description: "Versatile pieces designed to transition across seasons. Layer with confidence using our carefully curated outerwear.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-front-building-with-bag-looking-camera_23-2148148108.jpg", imageAlt: "Modern casual denim jacket"},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-front-building-with-bag-looking-camera_23-2148148108.jpg", imageAlt: "Modern casual denim jacket"
},
items: [
{ icon: Check, text: "Versatile styling" },
{ icon: Check, text: "Season-ready" },
@@ -107,7 +109,8 @@ export default function LandingPage() {
},
{
id: "statement", title: "Statement Pieces", description: "Stand out with intentional design. Pieces that make an impression while maintaining wearability and comfort.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-attractive-stylish-blonde-woman-city-street-summer-fashion-style-dress-wearing-sunglasses_285396-8475.jpg", imageAlt: "Premium dress elegant casual wear"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-attractive-stylish-blonde-woman-city-street-summer-fashion-style-dress-wearing-sunglasses_285396-8475.jpg", imageAlt: "Premium dress elegant casual wear"
},
items: [
{ icon: Check, text: "Distinctive design" },
{ icon: Check, text: "Comfortable wear" },
@@ -133,15 +136,15 @@ export default function LandingPage() {
products={[
{
id: "product-1", brand: "StyleNest", name: "Premium Cotton Essential Tee", price: "$48", rating: 5,
reviewCount: "324", imageSrc: "http://img.b2bpic.net/free-photo/different-zero-waste-products-with-copy-space_23-2148491097.jpg", imageAlt: "Premium cotton essential t-shirt", isFavorited: false,
reviewCount: "324", imageSrc: "http://img.b2bpic.net/free-photo/different-zero-waste-products-with-copy-space_23-2148491097.jpg", imageAlt: "Premium cotton essential t-shirt", isFavorited: false
},
{
id: "product-2", brand: "StyleNest", name: "Versatile Denim Jacket", price: "$128", rating: 5,
reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-front-building-with-bag-looking-camera_23-2148148108.jpg", imageAlt: "Modern casual denim jacket", isFavorited: false,
reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-front-building-with-bag-looking-camera_23-2148148108.jpg", imageAlt: "Modern casual denim jacket", isFavorited: false
},
{
id: "product-3", brand: "StyleNest", name: "Minimalist Everyday Dress", price: "$89", rating: 5,
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-attractive-stylish-blonde-woman-city-street-summer-fashion-style-dress-wearing-sunglasses_285396-8475.jpg", imageAlt: "Premium dress elegant casual wear", isFavorited: false,
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-attractive-stylish-blonde-woman-city-street-summer-fashion-style-dress-wearing-sunglasses_285396-8475.jpg", imageAlt: "Premium dress elegant casual wear", isFavorited: false
},
]}
/>
@@ -271,16 +274,20 @@ export default function LandingPage() {
socialLinks={[
{
icon: Instagram,
href: "https://instagram.com", ariaLabel: "Visit StyleNest on Instagram"},
href: "https://instagram.com", ariaLabel: "Visit StyleNest on Instagram"
},
{
icon: Twitter,
href: "https://twitter.com", ariaLabel: "Visit StyleNest on Twitter"},
href: "https://twitter.com", ariaLabel: "Visit StyleNest on Twitter"
},
{
icon: Facebook,
href: "https://facebook.com", ariaLabel: "Visit StyleNest on Facebook"},
href: "https://facebook.com", ariaLabel: "Visit StyleNest on Facebook"
},
{
icon: Mail,
href: "mailto:hello@stylenest.com", ariaLabel: "Email StyleNest"},
href: "mailto:hello@stylenest.com", ariaLabel: "Email StyleNest"
}
]}
/>
</div>