From 8f4bce4e9617c31f99b7b6fabe1d6bb0755e1501 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:18:31 +0000 Subject: [PATCH 1/2] Update src/app/news/page.tsx --- src/app/news/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/news/page.tsx b/src/app/news/page.tsx index af540ec..ebf3cac 100644 --- a/src/app/news/page.tsx +++ b/src/app/news/page.tsx @@ -48,23 +48,23 @@ export default function NewsPage() { blogs={[ { id: "1", category: ["Trends", "Seasonal"], - title: "Spring 2025 Floral Trends", excerpt: "Discover the hottest floral color palettes and arrangements trending this spring season. From pastels to bold jewel tones, we explore what's blooming this year.", imageSrc: "http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17398.jpg", imageAlt: "Spring floral arrangement", authorName: "Elena Rossi", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "15 Jan 2025" + title: "Spring 2025 Floral Trends", excerpt: "Discover the hottest floral color palettes and arrangements trending this spring season. From pastels to bold jewel tones, we explore what's blooming this year.", imageSrc: "http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17398.jpg?_wi=2", imageAlt: "Spring floral arrangement", authorName: "Elena Rossi", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "15 Jan 2025" }, { id: "2", category: ["Care Tips"], - title: "How to Keep Your Flowers Fresh Longer", excerpt: "Simple steps to extend the life of your floral arrangements. Learn about proper watering, placement, and maintenance techniques that keep blooms vibrant.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg", imageAlt: "Fresh flower care", authorName: "Marco Bellini", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", date: "12 Jan 2025" + title: "How to Keep Your Flowers Fresh Longer", excerpt: "Simple steps to extend the life of your floral arrangements. Learn about proper watering, placement, and maintenance techniques that keep blooms vibrant.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg?_wi=2", imageAlt: "Fresh flower care", authorName: "Marco Bellini", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", date: "12 Jan 2025" }, { id: "3", category: ["Wedding", "Events"], - title: "Wedding Floral Ideas for 2025", excerpt: "Get inspired by our favorite wedding floral designs from 2024 and what to expect for upcoming celebrations. Explore timeless arrangements with modern twists.", imageSrc: "http://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg", imageAlt: "Wedding floral arrangement", authorName: "Sofia Martini", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "8 Jan 2025" + title: "Wedding Floral Ideas for 2025", excerpt: "Get inspired by our favorite wedding floral designs from 2024 and what to expect for upcoming celebrations. Explore timeless arrangements with modern twists.", imageSrc: "http://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg?_wi=2", imageAlt: "Wedding floral arrangement", authorName: "Sofia Martini", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "8 Jan 2025" }, { id: "4", category: ["Sustainability"], - title: "Eco-Friendly Floral Practices", excerpt: "Our commitment to sustainable floristry. Learn how we source responsibly grown flowers and use eco-friendly practices in every arrangement.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-bouquet-pink-roses-other-flowers-with-green-leafs_181624-3255.jpg", imageAlt: "Sustainable flowers", authorName: "Giuseppe Verde", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", date: "5 Jan 2025" + title: "Eco-Friendly Floral Practices", excerpt: "Our commitment to sustainable floristry. Learn how we source responsibly grown flowers and use eco-friendly practices in every arrangement.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-bouquet-pink-roses-other-flowers-with-green-leafs_181624-3255.jpg?_wi=2", imageAlt: "Sustainable flowers", authorName: "Giuseppe Verde", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", date: "5 Jan 2025" }, { id: "5", category: ["Design"], - title: "The Art of Color Theory in Florals", excerpt: "Understanding how colors work together in floral design. Explore complementary palettes, monochromatic schemes, and how to choose colors for your arrangement.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flowers-wood-with-copy-space_141793-17246.jpg", imageAlt: "Colorful flowers", authorName: "Isabella Rossi", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "1 Jan 2025" + title: "The Art of Color Theory in Florals", excerpt: "Understanding how colors work together in floral design. Explore complementary palettes, monochromatic schemes, and how to choose colors for your arrangement.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flowers-wood-with-copy-space_141793-17246.jpg?_wi=2", imageAlt: "Colorful flowers", authorName: "Isabella Rossi", authorAvatar: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", date: "1 Jan 2025" }, { id: "6", category: ["Seasonal", "Guide"], From 8efeeb2c6030b0a25984fa370649063b51bb3f39 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:18:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6ac3a59..53d13ff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -50,7 +50,7 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" background={{ variant: "sparkles-gradient" }} - imageSrc="http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17398.jpg" + imageSrc="http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17398.jpg?_wi=1" imageAlt="Beautiful floral arrangement at Orio studio" buttons={[ { text: "Explore Collections", href: "#products" }, @@ -70,7 +70,7 @@ export default function LandingPage() { { value: "10+", title: "Years of Excellence" }, { value: "5000+", title: "Happy Clients" } ]} - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg?_wi=1" imageAlt="Orio flowers studio workspace" useInvertedBackground={false} mediaAnimation="slide-up" @@ -115,15 +115,15 @@ export default function LandingPage() { products={[ { id: "1", brand: "Orio Premium", name: "Romantic Red Roses", price: "$85.00", rating: 5, - reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg", imageAlt: "Romantic red roses arrangement" + reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg?_wi=1", imageAlt: "Romantic red roses arrangement" }, { id: "2", brand: "Orio Deluxe", name: "Blush Peonies", price: "$95.00", rating: 5, - reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-bouquet-pink-roses-other-flowers-with-green-leafs_181624-3255.jpg", imageAlt: "Blush peony bouquet" + reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-bouquet-pink-roses-other-flowers-with-green-leafs_181624-3255.jpg?_wi=1", imageAlt: "Blush peony bouquet" }, { id: "3", brand: "Orio Sunshine", name: "Golden Sunflowers", price: "$65.00", rating: 5, - reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flowers-wood-with-copy-space_141793-17246.jpg", imageAlt: "Golden sunflower arrangement" + reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flowers-wood-with-copy-space_141793-17246.jpg?_wi=1", imageAlt: "Golden sunflower arrangement" } ]} />