227 lines
12 KiB
TypeScript
227 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
|
import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne";
|
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
import { Sparkles, Heart, Flower2, Zap, Users, Truck, Mail, Phone, MessageCircle, MapPin, HelpCircle } from "lucide-react";
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Bouquets", id: "/bouquets" },
|
|
{ name: "Delivery", id: "/delivery" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Contact", id: "/contact" },
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="largeSmall"
|
|
background="noiseDiagonalGradient"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="light"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Lilat Flowers"
|
|
navItems={navItems}
|
|
button={{ text: "Order Now", href: "#newsletter" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboard
|
|
logoText="Lilat Flowers"
|
|
description="ხელით შექმნილი ბუკეტები, რომლებიც თქვენს კართან მიეწოდება ახალი და ლამაზი. იდეალურია დაბადების დღეებისთვის, იუბილეებისთვის, ქორწილებისთვის და განსაკუთრებული მომენტებისთვის თბილისში."
|
|
buttons={[
|
|
{ text: "Call Now", href: "tel:+995577054283" },
|
|
{ text: "Order Flowers" },
|
|
]}
|
|
background={{ variant: "sparkles-gradient" }}
|
|
imageSrc="http://img.b2bpic.net/free-photo/vertical-bouquet-vase_181624-37904.jpg?_wi=1"
|
|
imageAlt="Beautiful fresh flower bouquets"
|
|
mediaAnimation="slide-up"
|
|
frameStyle="card"
|
|
/>
|
|
</div>
|
|
|
|
<div id="featured-bouquets" data-section="featured-bouquets">
|
|
<ProductCardTwo
|
|
title="რჩეული ბუკეტები"
|
|
description="Explore our most popular and stunning flower arrangements. Handcrafted by our expert florists."
|
|
tag="Best Sellers"
|
|
tagIcon={Sparkles}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
products={[
|
|
{
|
|
id: "1", brand: "Lilat Flowers", name: "Red Romance Roses", price: "₾89.99", rating: 5,
|
|
reviewCount: "127", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-pink-roses-isolated-white-panoramic-view_268835-1376.jpg?_wi=1", imageAlt: "Red Romance Roses bouquet"},
|
|
{
|
|
id: "2", brand: "Lilat Flowers", name: "Birthday Celebration Mix", price: "₾69.99", rating: 5,
|
|
reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-floral-still-life_23-2148134813.jpg?_wi=1", imageAlt: "Birthday Celebration flower mix"},
|
|
{
|
|
id: "3", brand: "Lilat Flowers", name: "Luxury Wedding White", price: "₾149.99", rating: 5,
|
|
reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/floral-ornament-with-heart-shaped_1157-334.jpg?_wi=1", imageAlt: "Luxury Wedding White flowers"},
|
|
]}
|
|
buttons={[{ text: "View All Bouquets" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-choose" data-section="why-choose">
|
|
<SplitAbout
|
|
title="Why Choose Lilat Flowers"
|
|
description="We're committed to delivering the freshest, most beautiful flowers with exceptional service to every customer in Tbilisi."
|
|
tag="Our Promise"
|
|
tagIcon={Heart}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
imagePosition="right"
|
|
bulletPoints={[
|
|
{
|
|
title: "Fresh Daily", description: "We source the freshest flowers every morning to ensure maximum quality and longevity.", icon: Flower2,
|
|
},
|
|
{
|
|
title: "Expert Florists", description: "Our professional florists handcraft each arrangement with care and artistry.", icon: Sparkles,
|
|
},
|
|
{
|
|
title: "Same-Day Delivery", description: "Order before 2 PM for same-day delivery throughout Tbilisi and Gldani area.", icon: Zap,
|
|
},
|
|
{
|
|
title: "Local Business", description: "Woman-owned and proud to serve our community with premium, personalized service.", icon: Users,
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/female-florist-making-beautiful-arrangement-flowers_23-2149127259.jpg?_wi=1"
|
|
imageAlt="Lilat Flowers shop interior"
|
|
mediaAnimation="slide-up"
|
|
buttons={[{ text: "Learn More" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="delivery-info" data-section="delivery-info">
|
|
<FeatureCardTwentyOne
|
|
title="Same-Day Delivery in Tbilisi"
|
|
description="Fast, reliable flower delivery to brighten your special moments. We cover all of Tbilisi, especially the Gldani area."
|
|
tag="Quick Service"
|
|
tagIcon={Truck}
|
|
useInvertedBackground={false}
|
|
mediaPosition="left"
|
|
imageSrc="http://img.b2bpic.net/free-photo/selective-focus-beautiful-bouquet-wooden-table_181624-38107.jpg?_wi=1"
|
|
imageAlt="Same-day flower delivery service"
|
|
mediaAnimation="slide-up"
|
|
accordionItems={[
|
|
{
|
|
id: "1", title: "Same-Day Delivery", content: "Order before 2 PM and we'll deliver your flowers the same day. Perfect for last-minute gifts and celebrations."},
|
|
{
|
|
id: "2", title: "Delivery Zones", content: "We deliver throughout Tbilisi including Gldani, Vake, Saburtalo, Krtsanisi, and surrounding areas with premium care."},
|
|
{
|
|
id: "3", title: "Delivery Hours", content: "Available Monday to Sunday, 9 AM - 8 PM. Weekend and holiday deliveries available upon request."},
|
|
{
|
|
id: "4", title: "Guarantee", content: "All deliveries arrive fresh and beautiful or we'll arrange a replacement at no extra charge."},
|
|
]}
|
|
buttons={[{ text: "Order Delivery Now" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardFifteen
|
|
testimonial="Lilat Flowers created the most beautiful bouquet for my anniversary. The flowers were incredibly fresh and the delivery was exactly on time. My wife absolutely loved them!"
|
|
rating={5}
|
|
author="Giorgi K., Tbilisi"
|
|
avatars={[
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-decorating-home_23-2150633265.jpg", alt: "Customer testimonial"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/beautiful-african-female-florist-smiling-making-bouquet-flowers_176420-12253.jpg", alt: "Customer testimonial"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/young-woman-white-turtleneck-holding-bouquet-flowers-looking-front-amazed-surprised-covering-mouth-with-hand-celebrating-international-women-s-day-standing-green-wall_141793-62444.jpg", alt: "Customer testimonial"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-10-2024-floral-arrangements-placed-tables_482257-124327.jpg", alt: "Event testimonial"},
|
|
]}
|
|
ratingAnimation="slide-up"
|
|
avatarsAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
title="Frequently Asked Questions"
|
|
description="Find answers to common questions about our flowers, delivery, and ordering process."
|
|
tag="Help & Support"
|
|
tagIcon={HelpCircle}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
faqsAnimation="slide-up"
|
|
faqs={[
|
|
{
|
|
id: "1", title: "How do I place an order?", content: "You can order online through our website, call us at +995 577 05 42 83, or visit our shop in Gldani Mall. We accept all major payment methods and cash on delivery."},
|
|
{
|
|
id: "2", title: "What is your delivery fee?", content: "Delivery is free for orders over ₾100 within Tbilisi. For orders under ₾100, delivery fee is ₾10-15 depending on the area. Same-day delivery orders have priority."},
|
|
{
|
|
id: "3", title: "Can I customize my bouquet?", content: "Absolutely! We offer custom bouquet design. Call us or mention your preferences during checkout. Our florists will create something perfect for you."},
|
|
{
|
|
id: "4", title: "How long do flowers last?", content: "With proper care (fresh water, trimmed stems, cool temperature), our flowers typically last 7-14 days. We include care instructions with every delivery."},
|
|
{
|
|
id: "5", title: "Do you offer subscription services?", content: "Yes! We offer weekly or bi-weekly flower subscriptions. Perfect for offices, homes, or regular gifts. Contact us for subscription pricing."},
|
|
{
|
|
id: "6", title: "What if I'm not satisfied?", content: "We guarantee fresh, beautiful flowers. If there's any issue, contact us within 2 hours of delivery and we'll replace or refund your order."},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="newsletter" data-section="newsletter">
|
|
<ContactSplit
|
|
tag="Stay Connected"
|
|
title="Get Special Offers & Updates"
|
|
description="Subscribe to our newsletter for exclusive flower deals, seasonal promotions, and care tips delivered to your inbox."
|
|
tagIcon={Mail}
|
|
background={{ variant: "sparkles-gradient" }}
|
|
useInvertedBackground={false}
|
|
imageSrc="http://img.b2bpic.net/free-photo/bouquet-flowers-glass-vase-with-decorative-elements-blurred-background-easter-holiday-concept_169016-9695.jpg?_wi=1"
|
|
imageAlt="Beautiful flowers"
|
|
mediaAnimation="slide-up"
|
|
mediaPosition="right"
|
|
inputPlaceholder="Your email address"
|
|
buttonText="Subscribe"
|
|
termsText="We respect your privacy. Unsubscribe anytime."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="Lilat Flowers"
|
|
copyrightText="© 2025 Lilat Flowers. All rights reserved. Located in Gldani Mall, Tbilisi."
|
|
socialLinks={[
|
|
{
|
|
icon: Phone,
|
|
href: "tel:+995577054283", ariaLabel: "Call us"},
|
|
{
|
|
icon: MessageCircle,
|
|
href: "https://wa.me/995577054283", ariaLabel: "WhatsApp"},
|
|
{
|
|
icon: MapPin,
|
|
href: "https://maps.google.com/?q=Lilat+Flowers+Gldani+Mall+Tbilisi", ariaLabel: "Visit our store"},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|