This commit is contained in:
ABasral
2025-09-12 13:37:27 +05:30
parent b06bb213b7
commit 52ded64b40
2 changed files with 5 additions and 5 deletions

View File

@ -191,7 +191,7 @@ export default function AboutPage() {
transition={{ duration: 0.6, delay: 0.2 }}
viewport={{ once: true }}
>
are the proud founders of Mozimo, a bean-to-bar chocolate shop that celebrates the rich and distinctive flavors of single origin cocoa beans. Their journey with Mozimo has been a passionate pursuit of creating exceptional chocolate that tantalizes the taste buds and tells the unique story of each cocoa bean's origin.
are the proud founders of Mozimo, a bean-to-bar chocolate shop that celebrates the rich and distinctive flavors of single origin cocoa beans. Their journey with Mozimo has been a passionate pursuit of creating exceptional chocolate that tantalizes the taste buds and tells the unique story of each cocoa bean's origin.
</motion.p>
</motion.div>
</div>
@ -255,7 +255,7 @@ export default function AboutPage() {
transition={{ duration: 0.6, delay: 0.2 }}
viewport={{ once: true }}
>
With over 15 years of hospitality experience, these avid travelers scoured the globe for the finest cocoa beans and techniques. Deep in remote cocoa farms, they cultivated relationships with farmers committed to sustainability. Carefully selecting beans, they honor each harvest's stories. In their cozy workshop, they roast, crack, and refine beans with modern techniques, capturing their essence in every Mozimo chocolate bar.
With over 15 years of hospitality experience, these avid travelers scoured the globe for the finest cocoa beans and techniques. Deep in remote cocoa farms, they cultivated relationships with farmers committed to sustainability. Carefully selecting beans, they honor each harvest&apos;s stories. In their cozy workshop, they roast, crack, and refine beans with modern techniques, capturing their essence in every Mozimo chocolate bar.
</motion.p>
</motion.div>

View File

@ -59,7 +59,7 @@ export default function ProductCategory() {
};
preloadImages();
}, []);
}, [categoryImages]);
// Ultra-fast animation variants (no delays)
const fadeInLeft = {
@ -138,7 +138,7 @@ export default function ProductCategory() {
</motion.li>
);
});
}, [currentCategory, handleCategoryChange]);
}, [currentCategory, handleCategoryChange, categories, categoryImages, categoryLinks]);
// Ultra-optimized image switcher with instant transitions
const categoryImageComponent = useMemo(
@ -177,7 +177,7 @@ export default function ProductCategory() {
))}
</div>
),
[currentCategory]
[currentCategory, categories, categoryImages]
);
return (