226 lines
11 KiB
TypeScript
226 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
|
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import { CheckCircle, Flower, Flower2, Heart, Mail, Sparkles } from 'lucide-react';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="mediumLarge"
|
|
background="none"
|
|
cardStyle="subtle-shadow"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Bee Fly"
|
|
navItems={[
|
|
{ name: "Featured", id: "featured" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Contact", id: "contact" },
|
|
{ name: "Shop", id: "featured" }
|
|
]}
|
|
button={{ text: "Order Now", href: "#featured" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardGallery
|
|
title="Discover Nature's Most Beautiful Blooms"
|
|
description="Handcrafted floral arrangements for every occasion. Fresh flowers delivered with love and elegance."
|
|
tag="Premium Flowers"
|
|
tagIcon={Flower}
|
|
background={{ variant: "radial-gradient" }}
|
|
mediaAnimation="auto"
|
|
mediaItems={[
|
|
{ imageSrc: "https://img.b2bpic.net/free-photo/pink-roses-with-green-stems_23-2147761211.jpg", imageAlt: "Beautiful pink roses arrangement" },
|
|
{ imageSrc: "https://img.b2bpic.net/free-photo/decoration-artificial-flower-table-filtered-image-processed_1232-3695.jpg", imageAlt: "Colorful wildflower bouquet" },
|
|
{ imageSrc: "https://img.b2bpic.net/free-photo/close-up-bunch-romantic-roses_23-2148387902.jpg", imageAlt: "Bright sunflower display" },
|
|
{ imageSrc: "https://img.b2bpic.net/free-photo/bouquet-flowers-background_1339-8291.jpg", imageAlt: "Purple lavender arrangement" },
|
|
{ imageSrc: "https://img.b2bpic.net/free-photo/march-inscription-with-roses-notebook_23-2148069079.jpg", imageAlt: "Elegant white flower collection" }
|
|
]}
|
|
buttons={[
|
|
{ text: "Shop Now", href: "#featured" },
|
|
{ text: "Learn More", href: "#about" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="featured" data-section="featured">
|
|
<ProductCardOne
|
|
title="Featured Flowers"
|
|
description="Explore our curated selection of the finest flowers, carefully sourced and arranged by our expert florists."
|
|
tag="New Arrivals"
|
|
tagIcon={Sparkles}
|
|
products={[
|
|
{
|
|
id: "1", name: "Romantic Rose Bundle", price: "$65.00", imageSrc: "https://img.b2bpic.net/free-photo/girlfriend-standing-living-room-filled-with-romantic-gifts_482257-77346.jpg", imageAlt: "Dozen premium red roses in elegant arrangement"
|
|
},
|
|
{
|
|
id: "2", name: "Spring Tulip Collection", price: "$55.00", imageSrc: "https://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg", imageAlt: "Vibrant multicolor tulips in fresh bouquet"
|
|
},
|
|
{
|
|
id: "3", name: "Exotic Orchid Paradise", price: "$75.00", imageSrc: "https://img.b2bpic.net/free-photo/portrait-woman-holding-collection-red-roses_23-2148488575.jpg", imageAlt: "Luxurious purple orchids in premium arrangement"
|
|
}
|
|
]}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
tag="Our Story"
|
|
tagIcon={Heart}
|
|
title="Crafting Beauty, One Bloom at a Time"
|
|
description="At Bee Fly, we believe flowers are nature's most perfect expression of love and joy."
|
|
subdescription="Founded by passionate florists dedicated to bringing happiness through flowers"
|
|
icon={Flower2}
|
|
videoSrc="/videos/about-video.mp4"
|
|
videoAriaLabel="About Bee Fly flower shop"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardSixteen
|
|
title="Why Choose Bee Fly"
|
|
description="Experience the difference quality and care make in every bouquet"
|
|
tag="Our Advantages"
|
|
tagIcon={CheckCircle}
|
|
negativeCard={{
|
|
items: [
|
|
"Generic, mass-produced flowers", "Long shipping times", "Limited customization options", "Inconsistent quality"
|
|
]
|
|
}}
|
|
positiveCard={{
|
|
items: [
|
|
"Handcrafted by expert florists", "Same-day delivery available", "Unlimited customization options", "Guaranteed freshness"
|
|
]
|
|
}}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardTwo
|
|
title="Bee Fly by the Numbers"
|
|
description="Trusted by thousands of happy customers across the region"
|
|
metrics={[
|
|
{ id: "1", value: "10K+", description: "Happy Customers" },
|
|
{ id: "2", value: "5K+", description: "Orders Delivered" },
|
|
{ id: "3", value: "98%", description: "Customer Satisfaction" },
|
|
{ id: "4", value: "24h", description: "Delivery Guarantee" }
|
|
]}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="scale-rotate"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardThirteen
|
|
title="What Our Customers Say"
|
|
description="Real stories from people who've experienced the Bee Fly difference"
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "The flowers arrived exactly on time and looked even more beautiful than the pictures. My anniversary dinner was absolutely perfect!", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"
|
|
},
|
|
{
|
|
id: "2", name: "Emily Chen", handle: "@emilyc", testimonial: "I've ordered from Bee Fly three times now. The quality is consistently exceptional and the customer service is outstanding.", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg"
|
|
},
|
|
{
|
|
id: "3", name: "Jessica Martinez", handle: "@jessicam", testimonial: "Best florist in town! They customized my wedding bouquet perfectly and the flowers stayed fresh throughout the entire day.", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg"
|
|
},
|
|
{
|
|
id: "4", name: "Amanda Lee", handle: "@amandalee", testimonial: "Ordered flowers for my mom's birthday and she couldn't stop talking about them. Absolutely worth every penny!", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg"
|
|
},
|
|
{
|
|
id: "5", name: "Rachel Wilson", handle: "@rachelw", testimonial: "The arrangement was breathtaking. Bee Fly truly understands how to create something special that brings joy.", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg"
|
|
},
|
|
{
|
|
id: "6", name: "Nicole Taylor", handle: "@nicolet", testimonial: "Professional, friendly, and their flowers are absolutely gorgeous. I recommend Bee Fly to everyone!", rating: 5,
|
|
imageSrc: "https://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg"
|
|
}
|
|
]}
|
|
showRating={true}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
tag="Get in Touch"
|
|
tagIcon={Mail}
|
|
title="Ready to Order Your Perfect Bouquet?"
|
|
description="Contact us today or place an order directly. Our team is ready to help you create something beautiful for any occasion."
|
|
buttons={[
|
|
{ text: "Order Now", href: "#featured" },
|
|
{ text: "Contact Us", href: "mailto:hello@beefly.com" }
|
|
]}
|
|
background={{ variant: "sparkles-gradient" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="https://img.b2bpic.net/free-photo/elegant-bouquet-pink-white-roses-with-lilies_9975-133063.jpg"
|
|
imageAlt="Beautiful blooming flower field"
|
|
columns={[
|
|
{
|
|
title: "Shop", items: [
|
|
{ label: "Featured Flowers", href: "#featured" },
|
|
{ label: "Bouquets", href: "#featured" },
|
|
{ label: "Custom Orders", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Contact", href: "#contact" },
|
|
{ label: "Careers", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{ label: "Help Center", href: "#contact" },
|
|
{ label: "Shipping Info", href: "#contact" },
|
|
{ label: "Returns", href: "#contact" }
|
|
]
|
|
}
|
|
]}
|
|
logoText="Bee Fly"
|
|
copyrightText="© 2025 Bee Fly Flowers. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |