Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
344
src/app/page.tsx
344
src/app/page.tsx
@@ -30,37 +30,21 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Collections",
|
||||
id: "#collections",
|
||||
},
|
||||
name: "Collections", id: "#collections"},
|
||||
{
|
||||
name: "Why Us",
|
||||
id: "#why-us",
|
||||
},
|
||||
name: "Why Us", id: "#why-us"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "#gallery",
|
||||
},
|
||||
name: "Gallery", id: "#gallery"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Lily of the Valley"
|
||||
/>
|
||||
@@ -69,45 +53,28 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="Exceptional Floral Creations in the Heart of Paris"
|
||||
description="Handcrafted bouquets, elegant arrangements, and same-day flower delivery for every occasion. Experience Parisian elegance with Lily of the Valley."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Flowers",
|
||||
href: "#collections",
|
||||
},
|
||||
text: "Order Flowers", href: "#collections"},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Contact Us", href: "#contact"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flowers-outside-flower-shop_23-2151932165.jpg",
|
||||
imageAlt: "Luxurious florist shop interior in Paris",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flowers-outside-flower-shop_23-2151932165.jpg", imageAlt: "Luxurious florist shop interior in Paris"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stand-with-bouquet-wedding-ceremony_8353-9840.jpg",
|
||||
imageAlt: "Grand floral archway with pink and white roses",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stand-with-bouquet-wedding-ceremony_8353-9840.jpg", imageAlt: "Grand floral archway with pink and white roses"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17389.jpg",
|
||||
imageAlt: "Delicate floral bouquet in morning light",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-floral-arrangement-red-surface_58702-17389.jpg", imageAlt: "Delicate floral bouquet in morning light"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/florist-looking-through-shop-window_23-2147762233.jpg",
|
||||
imageAlt: "Charming Parisian flower market stall",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/florist-looking-through-shop-window_23-2147762233.jpg", imageAlt: "Charming Parisian flower market stall"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-bouquet-multi-colored-flowers-table-generated-by-ai_188544-38811.jpg",
|
||||
imageAlt: "Elegant wedding centerpiece with luxury flowers",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-bouquet-multi-colored-flowers-table-generated-by-ai_188544-38811.jpg", imageAlt: "Elegant wedding centerpiece with luxury flowers"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-tulip-glass-black-background-with-reflection_23-2148194770.jpg",
|
||||
imageAlt: "Modern artistic floral composition",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-tulip-glass-black-background-with-reflection_23-2148194770.jpg", imageAlt: "Modern artistic floral composition"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -118,9 +85,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Passion for Flowers, Rooted in Paris"
|
||||
description={[
|
||||
"Lily of the Valley - Fleurs - Paris 9 is a woman-owned premium flower shop, born from a deep love for artistic floral design and Parisian elegance. Located at 73 Rue Blanche, 75009 Paris, we are dedicated to crafting unique floral experiences for every occasion.",
|
||||
"We meticulously select the freshest, highest-quality blooms, transforming them into stunning arrangements that speak volumes. Our personalized customer service ensures every bouquet is a perfect reflection of your sentiments, delivered with care and a touch of French sophistication.",
|
||||
]}
|
||||
"Lily of the Valley - Fleurs - Paris 9 is a woman-owned premium flower shop, born from a deep love for artistic floral design and Parisian elegance. Located at 73 Rue Blanche, 75009 Paris, we are dedicated to crafting unique floral experiences for every occasion.", "We meticulously select the freshest, highest-quality blooms, transforming them into stunning arrangements that speak volumes. Our personalized customer service ensures every bouquet is a perfect reflection of your sentiments, delivered with care and a touch of French sophistication."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -132,65 +97,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "luxury-bouquets",
|
||||
name: "Luxury Bouquets",
|
||||
brand: "Premium Selection",
|
||||
price: "From €120",
|
||||
rating: 4.8,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roses-light-bouquet-side-view_140725-11340.jpg",
|
||||
imageAlt: "Elegant Luxury Bouquet",
|
||||
},
|
||||
id: "luxury-bouquets", name: "Luxury Bouquets", brand: "Premium Selection", price: "From €120", rating: 4.8,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/roses-light-bouquet-side-view_140725-11340.jpg", imageAlt: "Elegant Luxury Bouquet"},
|
||||
{
|
||||
id: "wedding-flowers",
|
||||
name: "Wedding Flowers",
|
||||
brand: "Bridal Collection",
|
||||
price: "Upon Consultation",
|
||||
rating: 4.9,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-wedding-bouquet-ground_1153-628.jpg",
|
||||
imageAlt: "Beautiful Wedding Flowers",
|
||||
},
|
||||
id: "wedding-flowers", name: "Wedding Flowers", brand: "Bridal Collection", price: "Upon Consultation", rating: 4.9,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-wedding-bouquet-ground_1153-628.jpg", imageAlt: "Beautiful Wedding Flowers"},
|
||||
{
|
||||
id: "birthday-flowers",
|
||||
name: "Birthday Flowers",
|
||||
brand: "Celebration Blooms",
|
||||
price: "From €65",
|
||||
rating: 4.7,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flower-arrangement-with-cute-writing-heart_181624-82.jpg",
|
||||
imageAlt: "Vibrant Birthday Flowers",
|
||||
},
|
||||
id: "birthday-flowers", name: "Birthday Flowers", brand: "Celebration Blooms", price: "From €65", rating: 4.7,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/flower-arrangement-with-cute-writing-heart_181624-82.jpg", imageAlt: "Vibrant Birthday Flowers"},
|
||||
{
|
||||
id: "romantic-roses",
|
||||
name: "Romantic Roses",
|
||||
brand: "Love & Passion",
|
||||
price: "From €80",
|
||||
rating: 4.9,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-dark-grey-background_329181-12682.jpg",
|
||||
imageAlt: "Classic Red Roses Bouquet",
|
||||
},
|
||||
id: "romantic-roses", name: "Romantic Roses", brand: "Love & Passion", price: "From €80", rating: 4.9,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-dark-grey-background_329181-12682.jpg", imageAlt: "Classic Red Roses Bouquet"},
|
||||
{
|
||||
id: "seasonal-arrangements",
|
||||
name: "Seasonal Arrangements",
|
||||
brand: "Fresh & Seasonal",
|
||||
price: "From €70",
|
||||
rating: 4.8,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/floral-elements-wooden-box_23-2147673320.jpg",
|
||||
imageAlt: "Fresh Seasonal Flower Arrangement",
|
||||
},
|
||||
id: "seasonal-arrangements", name: "Seasonal Arrangements", brand: "Fresh & Seasonal", price: "From €70", rating: 4.8,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/floral-elements-wooden-box_23-2147673320.jpg", imageAlt: "Fresh Seasonal Flower Arrangement"},
|
||||
{
|
||||
id: "corporate-floral-design",
|
||||
name: "Corporate Floral Design",
|
||||
brand: "Business Solutions",
|
||||
price: "Upon Request",
|
||||
rating: 4.8,
|
||||
reviewCount: "175",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pink-chrysanthemums-hang-threads-from-ceiling-dinner-hall_1304-3325.jpg",
|
||||
imageAlt: "Modern Corporate Floral Arrangement",
|
||||
},
|
||||
id: "corporate-floral-design", name: "Corporate Floral Design", brand: "Business Solutions", price: "Upon Request", rating: 4.8,
|
||||
reviewCount: "175", imageSrc: "http://img.b2bpic.net/free-photo/pink-chrysanthemums-hang-threads-from-ceiling-dinner-hall_1304-3325.jpg", imageAlt: "Modern Corporate Floral Arrangement"},
|
||||
]}
|
||||
title="Featured Collections"
|
||||
description="Discover our exquisite range of floral designs, perfect for any moment."
|
||||
@@ -203,41 +126,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Premium Quality Flowers",
|
||||
description: "Only the freshest, highest-grade blooms sourced daily for lasting beauty.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pink-gardening-composition_23-2147673315.jpg",
|
||||
imageAlt: "Close-up of premium fresh flowers",
|
||||
},
|
||||
title: "Premium Quality Flowers", description: "Only the freshest, highest-grade blooms sourced daily for lasting beauty.", imageSrc: "http://img.b2bpic.net/free-photo/pink-gardening-composition_23-2147673315.jpg", imageAlt: "Close-up of premium fresh flowers"},
|
||||
{
|
||||
title: "Same-Day Delivery",
|
||||
description: "Prompt and reliable flower delivery across Paris for your urgent needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-florist-with-flower-paper-bag-white-background_23-2147929266.jpg",
|
||||
imageAlt: "Flower delivery in Paris",
|
||||
},
|
||||
title: "Same-Day Delivery", description: "Prompt and reliable flower delivery across Paris for your urgent needs.", imageSrc: "http://img.b2bpic.net/free-photo/female-florist-with-flower-paper-bag-white-background_23-2147929266.jpg", imageAlt: "Flower delivery in Paris"},
|
||||
{
|
||||
title: "Expert Florists",
|
||||
description: "Our team of skilled artisans crafts each arrangement with passion and precision.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-house-with-orchids_23-2150970110.jpg",
|
||||
imageAlt: "Florist hands arranging flowers",
|
||||
},
|
||||
title: "Expert Florists", description: "Our team of skilled artisans crafts each arrangement with passion and precision.", imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-house-with-orchids_23-2150970110.jpg", imageAlt: "Florist hands arranging flowers"},
|
||||
{
|
||||
title: "Personalized Arrangements",
|
||||
description: "Bespoke designs tailored to your vision and occasion, reflecting true individuality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-working-as-wedding-planners_23-2150328533.jpg",
|
||||
imageAlt: "Customer consulting florist for personalized bouquet",
|
||||
},
|
||||
title: "Personalized Arrangements", description: "Bespoke designs tailored to your vision and occasion, reflecting true individuality.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-working-as-wedding-planners_23-2150328533.jpg", imageAlt: "Customer consulting florist for personalized bouquet"},
|
||||
{
|
||||
title: "LGBTQ+ Friendly",
|
||||
description: "An inclusive space where everyone is welcome to celebrate love and beauty.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rainbow-pride-flag-made-from-pencils-heart_23-2148475967.jpg",
|
||||
imageAlt: "LGBTQ+ friendly flower shop with rainbow flowers",
|
||||
},
|
||||
title: "LGBTQ+ Friendly", description: "An inclusive space where everyone is welcome to celebrate love and beauty.", imageSrc: "http://img.b2bpic.net/free-photo/rainbow-pride-flag-made-from-pencils-heart_23-2148475967.jpg", imageAlt: "LGBTQ+ friendly flower shop with rainbow flowers"},
|
||||
{
|
||||
title: "Trusted by 175+ Happy Customers",
|
||||
description: "Our 4.8/5 star rating speaks volumes about our commitment to excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-greeting-mother-with-flowers-mothers-day_1303-21721.jpg",
|
||||
imageAlt: "Happy customer receiving a flower bouquet",
|
||||
},
|
||||
title: "Trusted by 175+ Happy Customers", description: "Our 4.8/5 star rating speaks volumes about our commitment to excellence.", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-greeting-mother-with-flowers-mothers-day_1303-21721.jpg", imageAlt: "Happy customer receiving a flower bouquet"},
|
||||
]}
|
||||
title="Why Choose Lily of the Valley?"
|
||||
description="Experience the difference of a truly dedicated Parisian florist."
|
||||
@@ -250,50 +149,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Absolutely Stunning!",
|
||||
quote: "The most beautiful bouquet I've ever received in Paris. The quality and freshness were exceptional, and the delivery was seamless. Truly a luxurious experience!",
|
||||
name: "Isabelle D.",
|
||||
role: "Art Collector",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-beautiful-woman-holding-bouquet-flowers_23-2148826720.jpg",
|
||||
imageAlt: "Isabelle D. smiling with flowers",
|
||||
},
|
||||
id: "1", title: "Absolutely Stunning!", quote: "The most beautiful bouquet I've ever received in Paris. The quality and freshness were exceptional, and the delivery was seamless. Truly a luxurious experience!", name: "Isabelle D.", role: "Art Collector", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-beautiful-woman-holding-bouquet-flowers_23-2148826720.jpg", imageAlt: "Isabelle D. smiling with flowers"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Exquisite Design & Service",
|
||||
quote: "Lily of the Valley created the perfect floral arrangements for my corporate event. Their attention to detail and personalized approach exceeded all expectations. Highly recommended!",
|
||||
name: "Philippe G.",
|
||||
role: "Event Planner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-bathrobe-surprised-with-bouquet-tulips_23-2148389833.jpg",
|
||||
imageAlt: "Philippe G. enjoying flowers",
|
||||
},
|
||||
id: "2", title: "Exquisite Design & Service", quote: "Lily of the Valley created the perfect floral arrangements for my corporate event. Their attention to detail and personalized approach exceeded all expectations. Highly recommended!", name: "Philippe G.", role: "Event Planner", imageSrc: "http://img.b2bpic.net/free-photo/woman-bathrobe-surprised-with-bouquet-tulips_23-2148389833.jpg", imageAlt: "Philippe G. enjoying flowers"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Dream Wedding Flowers",
|
||||
quote: "Our wedding flowers were beyond breathtaking! Every piece was a work of art, and they perfectly captured the romantic vision we had for our special day.",
|
||||
name: "Camille & Jean",
|
||||
role: "Newlyweds",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bride-with-bouquet-white-roses-engagement-ring_23-2151976680.jpg",
|
||||
imageAlt: "Camille & Jean on their wedding day",
|
||||
},
|
||||
id: "3", title: "Dream Wedding Flowers", quote: "Our wedding flowers were beyond breathtaking! Every piece was a work of art, and they perfectly captured the romantic vision we had for our special day.", name: "Camille & Jean", role: "Newlyweds", imageSrc: "http://img.b2bpic.net/free-photo/bride-with-bouquet-white-roses-engagement-ring_23-2151976680.jpg", imageAlt: "Camille & Jean on their wedding day"},
|
||||
{
|
||||
id: "4",
|
||||
title: "My Go-To Florist",
|
||||
quote: "For every occasion, big or small, Lily of the Valley is my trusted florist. Their creativity and the longevity of their flowers are unmatched. A true gem in Paris!",
|
||||
name: "Margot L.",
|
||||
role: "Fashion Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-hiding-gift-box-flower-his-back-giving-surprise-girlfriend_23-2147879607.jpg",
|
||||
imageAlt: "Margot L. with a floral arrangement",
|
||||
},
|
||||
id: "4", title: "My Go-To Florist", quote: "For every occasion, big or small, Lily of the Valley is my trusted florist. Their creativity and the longevity of their flowers are unmatched. A true gem in Paris!", name: "Margot L.", role: "Fashion Designer", imageSrc: "http://img.b2bpic.net/free-photo/man-hiding-gift-box-flower-his-back-giving-surprise-girlfriend_23-2147879607.jpg", imageAlt: "Margot L. with a floral arrangement"},
|
||||
{
|
||||
id: "5",
|
||||
title: "Consistent Elegance",
|
||||
quote: "From simple gestures to grand statements, the consistency in quality and elegance is remarkable. Their team is always a pleasure to work with, truly understanding client needs.",
|
||||
name: "Antoine R.",
|
||||
role: "Restaurant Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-romantic-proposal-street_23-2147735724.jpg",
|
||||
imageAlt: "Antoine R. satisfied with corporate flowers",
|
||||
},
|
||||
id: "5", title: "Consistent Elegance", quote: "From simple gestures to grand statements, the consistency in quality and elegance is remarkable. Their team is always a pleasure to work with, truly understanding client needs.", name: "Antoine R.", role: "Restaurant Owner", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-romantic-proposal-street_23-2147735724.jpg", imageAlt: "Antoine R. satisfied with corporate flowers"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="With a 4.8/5 star rating from over 175 reviews, our customers love our floral artistry."
|
||||
@@ -306,35 +170,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Flower Delivery Across Paris",
|
||||
description: "Enjoy convenient same-day delivery throughout Paris, ensuring fresh blooms arrive promptly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-bouquet-flowers-while-sitting-bicycle_23-2148765673.jpg",
|
||||
imageAlt: "Flower delivery bicycle in Paris",
|
||||
},
|
||||
title: "Flower Delivery Across Paris", description: "Enjoy convenient same-day delivery throughout Paris, ensuring fresh blooms arrive promptly.", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-bouquet-flowers-while-sitting-bicycle_23-2148765673.jpg", imageAlt: "Flower delivery bicycle in Paris"},
|
||||
{
|
||||
title: "Click & Collect (Drive Available)",
|
||||
description: "Order online and pick up your exquisite arrangements at your convenience from our boutique.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-business-man-delivering-bouquet-beautiful-flowers_1303-20887.jpg",
|
||||
imageAlt: "Customer picking up flowers at a shop",
|
||||
},
|
||||
title: "Click & Collect (Drive Available)", description: "Order online and pick up your exquisite arrangements at your convenience from our boutique.", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-business-man-delivering-bouquet-beautiful-flowers_1303-20887.jpg", imageAlt: "Customer picking up flowers at a shop"},
|
||||
{
|
||||
title: "In-Store Shopping Experience",
|
||||
description: "Visit us at 73 Rue Blanche to explore our beautiful selection and receive personalized assistance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-flower-bouquet_23-2149050746.jpg",
|
||||
imageAlt: "Luxurious flower shop interior",
|
||||
},
|
||||
title: "In-Store Shopping Experience", description: "Visit us at 73 Rue Blanche to explore our beautiful selection and receive personalized assistance.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-flower-bouquet_23-2149050746.jpg", imageAlt: "Luxurious flower shop interior"},
|
||||
{
|
||||
title: "Event & Wedding Floral Design",
|
||||
description: "Transform your special occasions with bespoke floral designs, from intimate gatherings to grand celebrations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-flowers-pots_23-2147761229.jpg",
|
||||
imageAlt: "Elegant wedding event floral decoration",
|
||||
},
|
||||
title: "Event & Wedding Floral Design", description: "Transform your special occasions with bespoke floral designs, from intimate gatherings to grand celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-flowers-pots_23-2147761229.jpg", imageAlt: "Elegant wedding event floral decoration"},
|
||||
{
|
||||
title: "Corporate Floral Services",
|
||||
description: "Enhance your business environment with weekly flower subscriptions, client gifts, and event florals.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-male-near-cheerful-female-table_23-2148024563.jpg",
|
||||
imageAlt: "Modern office lobby with floral arrangement",
|
||||
},
|
||||
title: "Corporate Floral Services", description: "Enhance your business environment with weekly flower subscriptions, client gifts, and event florals.", imageSrc: "http://img.b2bpic.net/free-photo/happy-male-near-cheerful-female-table_23-2148024563.jpg", imageAlt: "Modern office lobby with floral arrangement"},
|
||||
]}
|
||||
title="Our Dedicated Services"
|
||||
description="We offer a comprehensive range of floral services designed to bring beauty to your life."
|
||||
@@ -349,75 +193,26 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "g-1",
|
||||
name: "Classic Elegance",
|
||||
brand: "Parisian",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21111.jpg",
|
||||
imageAlt: "Elegant white and gold flower arrangement",
|
||||
},
|
||||
id: "g-1", name: "Classic Elegance", brand: "Parisian", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21111.jpg", imageAlt: "Elegant white and gold flower arrangement"},
|
||||
{
|
||||
id: "g-2",
|
||||
name: "Bridal Bliss",
|
||||
brand: "Wedding",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-wreath-hands-stylish-woman-city-walk_169016-16692.jpg",
|
||||
imageAlt: "Wedding floral archway with roses",
|
||||
},
|
||||
id: "g-2", name: "Bridal Bliss", brand: "Wedding", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/christmas-wreath-hands-stylish-woman-city-walk_169016-16692.jpg", imageAlt: "Wedding floral archway with roses"},
|
||||
{
|
||||
id: "g-3",
|
||||
name: "Modern Minimal",
|
||||
brand: "Contemporary",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-rose-empty-card_23-2148381070.jpg",
|
||||
imageAlt: "Modern minimalist flower bouquet",
|
||||
},
|
||||
id: "g-3", name: "Modern Minimal", brand: "Contemporary", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-rose-empty-card_23-2148381070.jpg", imageAlt: "Modern minimalist flower bouquet"},
|
||||
{
|
||||
id: "g-4",
|
||||
name: "Seasonal Charm",
|
||||
brand: "Seasonal",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flowers-from-home-garden-vase-white-background_169016-36807.jpg",
|
||||
imageAlt: "Vibrant seasonal flower basket",
|
||||
},
|
||||
id: "g-4", name: "Seasonal Charm", brand: "Seasonal", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/flowers-from-home-garden-vase-white-background_169016-36807.jpg", imageAlt: "Vibrant seasonal flower basket"},
|
||||
{
|
||||
id: "g-5",
|
||||
name: "Table Opulence",
|
||||
brand: "Events",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-with-roses-wedding-ceremony_181624-39429.jpg",
|
||||
imageAlt: "Luxury table setting floral decor",
|
||||
},
|
||||
id: "g-5", name: "Table Opulence", brand: "Events", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-with-roses-wedding-ceremony_181624-39429.jpg", imageAlt: "Luxury table setting floral decor"},
|
||||
{
|
||||
id: "g-6",
|
||||
name: "Exotic Beauty",
|
||||
brand: "Unique",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-flowers-shelf_23-2147761227.jpg",
|
||||
imageAlt: "Unique exotic flower arrangement",
|
||||
},
|
||||
id: "g-6", name: "Exotic Beauty", brand: "Unique", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-flowers-shelf_23-2147761227.jpg", imageAlt: "Unique exotic flower arrangement"},
|
||||
{
|
||||
id: "g-7",
|
||||
name: "Blush Romance",
|
||||
brand: "Romantic",
|
||||
price: "N/A",
|
||||
rating: 5,
|
||||
reviewCount: "0",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spring-composition-with-bouquet-flowers-vase-closeup_169016-29760.jpg",
|
||||
imageAlt: "Blush pink rose bouquet",
|
||||
},
|
||||
id: "g-7", name: "Blush Romance", brand: "Romantic", price: "N/A", rating: 5,
|
||||
reviewCount: "0", imageSrc: "http://img.b2bpic.net/free-photo/spring-composition-with-bouquet-flowers-vase-closeup_169016-29760.jpg", imageAlt: "Blush pink rose bouquet"},
|
||||
]}
|
||||
title="Our Floral Gallery"
|
||||
description="A curated collection of our finest luxury flower arrangements and bouquets."
|
||||
@@ -428,20 +223,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Get in Touch"
|
||||
title="Visit Our Parisian Boutique or Reach Out"
|
||||
description="Experience the beauty of Lily of the Valley at 73 Rue Blanche, 75009 Paris, France. We are open now and close at 18:00. Feel free to call us directly at +33 9 86 63 74 57 for personalized service or use the form below for inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+33986637457",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:+33986637457"},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://www.google.com/maps/search/73+Rue+Blanche,+75009+Paris,+France",
|
||||
onClick: "openInNewTab",
|
||||
text: "Get Directions", href: "https://www.google.com/maps/search/73+Rue+Blanche,+75009+Paris,+France", onClick: () => window.open("https://www.google.com/maps/search/73+Rue+Blanche,+75009+Paris,+France", "_blank")
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -451,13 +241,9 @@ export default function LandingPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Lily of the Valley - Fleurs - Paris 9"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Terms of Service", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user