diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 5bbb878..f779f4a 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -27,13 +27,13 @@ export default function BlogPage() {
@@ -58,21 +58,21 @@ export default function BlogPage() {
columns={[
{
title: "Shop", items: [
- { label: "Bouquets", href: "products" },
- { label: "Custom Orders", href: "contact" },
+ { label: "Bouquets", href: "/#products" },
+ { label: "Custom Orders", href: "/#contact" },
{ label: "Gifts", href: "#" },
],
},
{
title: "Klumba", items: [
- { label: "Our Story", href: "about" },
- { label: "Services", href: "features" },
- { label: "FAQ", href: "faq" },
+ { label: "Our Story", href: "/#about" },
+ { label: "Services", href: "/#features" },
+ { label: "FAQ", href: "/#faq" },
],
},
{
title: "Connect", items: [
- { label: "Contact Us", href: "contact" },
+ { label: "Contact Us", href: "/#contact" },
{ label: "Instagram", href: "https://instagram.com/klumba" },
{ label: "Facebook", href: "https://facebook.com/klumba" },
],
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 46c24fd..a1afdbf 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -50,7 +50,7 @@ export default function LandingPage() {
layoutOrder="default"
imageSrc="https://img.b2bpic.net/free-photo/woman-holds-festive-flower-arrangement-with-bright-chrysanthemum-flowers_169016-51483.jpg"
imageAlt="Elegant floral arrangement with soft lighting"
- mediaAnimation="reveal-blur"
+ mediaAnimation="blur-reveal"
frameStyle="card"
ariaLabel="Hero section with Klumba logo and floral arrangement"
/>
@@ -67,8 +67,8 @@ export default function LandingPage() {
tag="Our Story"
imageSrc="https://img.b2bpic.net/free-photo/lovely-florist-table-flower-shop_23-2147761006.jpg"
imageAlt="Florist hands arranging a beautiful bouquet"
- mediaAnimation="reveal-blur"
- metricsAnimation="reveal-blur"
+ mediaAnimation="blur-reveal"
+ metricsAnimation="blur-reveal"
ariaLabel="About Klumba flower studio"
/>
@@ -84,7 +84,7 @@ export default function LandingPage() {
tag="Explore"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
- animationType="reveal-blur"
+ animationType="blur-reveal"
useInvertedBackground={true}
ariaLabel="Our signature bouquets product section"
/>
@@ -93,7 +93,7 @@ export default function LandingPage() {
@@ -152,7 +152,7 @@ export default function LandingPage() {
useInvertedBackground={false}
imageSrc="https://img.b2bpic.net/free-photo/flowers-florist-atelier_23-2147761223.jpg"
imageAlt="Beautiful interior of Klumba flowers studio with fresh flowers and natural light"
- mediaAnimation="reveal-blur"
+ mediaAnimation="blur-reveal"
mediaPosition="right"
buttonText="Send Message"
ariaLabel="Contact Klumba flower studio"
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 7d7f1c8..e737c92 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -101,7 +101,7 @@ function ProductPageContent({ params }: ProductPageProps) {