Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-10 14:50:25 +00:00

View File

@@ -30,10 +30,10 @@ export default function LandingPage() {
brandName="Jasmine Experts"
navItems={[
{ name: "Home", id: "/" },
{ name: "Flowers", id: "#flowers" },
{ name: "About", id: "#about" },
{ name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#contact" }
{ name: "Flowers", id: "flowers" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Order Now", href: "https://wa.me/971"
@@ -45,7 +45,7 @@ export default function LandingPage() {
<HeroCentered
title="Fresh Indian Flowers & Puja Essentials in Dubai"
description="Serving the community for years with premium flowers, traditional garlands, and authentic puja materials. Fresh jasmine, lotus, marigolds, and complete pooja supplies for every prayer and celebration."
background={{ variant: "noiseDiagonalGradient" }}
background={{ variant: "downward-rays-static" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg", alt: "Happy customer"
@@ -78,20 +78,16 @@ export default function LandingPage() {
tag="Our Advantages"
features={[
{
id: 1,
title: "Fresh Flowers Imported Regularly", description: "Daily shipments of premium jasmine, lotus, roses, and marigolds ensure maximum freshness for your prayers and decorations.", imageSrc: "http://img.b2bpic.net/free-photo/christmas-bouquet-wheat-plant-baskets_114579-2099.jpg?_wi=1", imageAlt: "Fresh flower collection"
id: "1", title: "Fresh Flowers Imported Regularly", description: "Daily shipments of premium jasmine, lotus, roses, and marigolds ensure maximum freshness for your prayers and decorations.", imageSrc: "http://img.b2bpic.net/free-photo/christmas-bouquet-wheat-plant-baskets_114579-2099.jpg", imageAlt: "Fresh flower collection"
},
{
id: 2,
title: "Wide Variety of Traditional Flowers", description: "Complete selection including jasmine, lotus, marigold, tulsi, and temple flowers used in authentic Indian worship.", imageSrc: "http://img.b2bpic.net/free-photo/small-assorted-boutonnieres-table_1304-4066.jpg?_wi=1", imageAlt: "Custom garland collection"
id: "2", title: "Wide Variety of Traditional Flowers", description: "Complete selection including jasmine, lotus, marigold, tulsi, and temple flowers used in authentic Indian worship.", imageSrc: "http://img.b2bpic.net/free-photo/small-assorted-boutonnieres-table_1304-4066.jpg", imageAlt: "Custom garland collection"
},
{
id: 3,
title: "Custom Garlands & Decorations", description: "Hand-crafted garlands for weddings, temple rituals, festivals, and home decoration with personalized design options.", imageSrc: "http://img.b2bpic.net/free-vector/flat-dia-de-muertos-character-elements-collection_23-2149737719.jpg?_wi=1", imageAlt: "Puja items collection"
id: "3", title: "Custom Garlands & Decorations", description: "Hand-crafted garlands for weddings, temple rituals, festivals, and home decoration with personalized design options.", imageSrc: "http://img.b2bpic.net/free-vector/flat-dia-de-muertos-character-elements-collection_23-2149737719.jpg", imageAlt: "Puja items collection"
},
{
id: 4,
title: "Complete Puja & Festival Items", description: "Everything you need for rituals: camphor, incense, dhoop, kumkum, diyas, coconut, and all authentic pooja materials.", imageSrc: "http://img.b2bpic.net/free-photo/diwali-celebration-oil-lamps-rangoli-decorations_23-2152022341.jpg", imageAlt: "Festival special flowers"
id: "4", title: "Complete Puja & Festival Items", description: "Everything you need for rituals: camphor, incense, dhoop, kumkum, diyas, coconut, and all authentic pooja materials.", imageSrc: "http://img.b2bpic.net/free-photo/diwali-celebration-oil-lamps-rangoli-decorations_23-2152022341.jpg", imageAlt: "Festival special flowers"
}
]}
textboxLayout="default"
@@ -111,13 +107,13 @@ export default function LandingPage() {
tag="Shop Now"
products={[
{
id: "1", name: "Fresh Jasmine Flowers", price: "AED 25", imageSrc: "http://img.b2bpic.net/free-photo/christmas-bouquet-wheat-plant-baskets_114579-2099.jpg?_wi=2", imageAlt: "Fresh jasmine bouquet"
id: "1", name: "Fresh Jasmine Flowers", price: "AED 25", imageSrc: "http://img.b2bpic.net/free-photo/christmas-bouquet-wheat-plant-baskets_114579-2099.jpg", imageAlt: "Fresh jasmine bouquet"
},
{
id: "2", name: "Custom Bridal Garland", price: "AED 150", imageSrc: "http://img.b2bpic.net/free-photo/small-assorted-boutonnieres-table_1304-4066.jpg?_wi=2", imageAlt: "Custom wedding garland"
id: "2", name: "Custom Bridal Garland", price: "AED 150", imageSrc: "http://img.b2bpic.net/free-photo/small-assorted-boutonnieres-table_1304-4066.jpg", imageAlt: "Custom wedding garland"
},
{
id: "3", name: "Complete Puja Kit", price: "AED 45", imageSrc: "http://img.b2bpic.net/free-vector/flat-dia-de-muertos-character-elements-collection_23-2149737719.jpg?_wi=2", imageAlt: "Puja essentials kit"
id: "3", name: "Complete Puja Kit", price: "AED 45", imageSrc: "http://img.b2bpic.net/free-vector/flat-dia-de-muertos-character-elements-collection_23-2149737719.jpg", imageAlt: "Puja essentials kit"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -226,7 +222,7 @@ export default function LandingPage() {
<ContactText
text="Ready to bring freshness and spirituality to your celebrations? Contact us today for orders, inquiries, or custom arrangements."
animationType="reveal-blur"
background={{ variant: "radial-gradient" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{
@@ -281,4 +277,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}