Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cab508c61b | |||
| 585c981546 | |||
| 5d7ad9e87e | |||
| cc72489a2b | |||
| 7600558766 | |||
| 8b5c57f878 | |||
| 41e7a11197 | |||
| 4adaa2a974 | |||
| 6a383e825d | |||
| 6fec0f1434 | |||
| 5d61d15a29 | |||
| e250953f4e |
@@ -61,23 +61,23 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
@@ -38,16 +38,26 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroSplitDualMedia
|
||||||
title="Exquisite Flowers for Every Moment"
|
title="Exquisite Flowers for Every Moment"
|
||||||
description="Discover the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love, passion, and attention to every detail."
|
description="Discover the beauty of nature with Giina's handcrafted floral arrangements. Fresh flowers delivered with love, passion, and attention to every detail."
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
tag="Fresh Blooms"
|
||||||
|
tagIcon={Sparkles}
|
||||||
|
tagAnimation="opacity"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "#products" },
|
{ text: "Shop Now", href: "products" },
|
||||||
{ text: "Learn More", href: "#about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="blur-reveal"
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg"
|
mediaItems={[
|
||||||
imageAlt="Fresh rose bouquet arrangement"
|
{ imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-bouquet-with-roses-vase-near-window-sunlight_181624-30882.jpg", imageAlt: "Fresh rose bouquet arrangement" },
|
||||||
|
{ imageSrc: "https://img.b2bpic.net/free-photo/beautiful-vase-pink-roses-grey-table_114579-39503.jpg", imageAlt: "Pink roses in vase" }
|
||||||
|
]}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
rating={5}
|
||||||
|
ratingText="Rated by loving Customers"
|
||||||
|
ariaLabel="Hero section with dual media"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -76,7 +86,7 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View All Collections", href: "#contact" }
|
{ text: "View All Collections", href: "contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -172,23 +182,23 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -103,23 +103,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -187,23 +187,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -295,23 +295,23 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
@@ -56,23 +56,23 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
@@ -139,23 +139,23 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Collections", items: [
|
||||||
{ label: "All Flowers", href: "#products" },
|
{ label: "All Flowers", href: "products" },
|
||||||
{ label: "Seasonal", href: "#products" },
|
{ label: "Seasonal", href: "products" },
|
||||||
{ label: "Premium", href: "#products" },
|
{ label: "Premium", href: "products" },
|
||||||
{ label: "Custom Orders", href: "#contact" }
|
{ label: "Custom Orders", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "#about" },
|
{ label: "Our Story", href: "about" },
|
||||||
{ label: "Why Choose Us", href: "#features" },
|
{ label: "Why Choose Us", href: "features" },
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
{ label: "Testimonials", href: "testimonials" },
|
||||||
{ label: "Blog", href: "#" }
|
{ label: "Blog", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Care Guide", href: "#" },
|
{ label: "Care Guide", href: "#" },
|
||||||
{ label: "FAQ", href: "#" }
|
{ label: "FAQ", href: "#" }
|
||||||
|
|||||||
Reference in New Issue
Block a user