Update src/app/shop/page.tsx

This commit is contained in:
2026-04-01 16:29:16 +00:00
parent 1e8f26b377
commit 7434c1ce3e

View File

@@ -8,17 +8,19 @@ import FooterCard from '@/components/sections/footer/FooterCard';
export default function ShopPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
]}
brandName="Florista de Tires"
/>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Florista de Tires"
/>
</div>
<div id="shop" data-section="shop" className="pt-32">
<ProductCardThree
animationType="slide-up"
@@ -34,7 +36,9 @@ export default function ShopPage() {
description="Browse our latest creations, crafted daily with seasonal wildflowers."
/>
</div>
<FooterCard logoText="Florista de Tires" />
<div id="footer" data-section="footer">
<FooterCard logoText="Florista de Tires" />
</div>
</ReactLenis>
</ThemeProvider>
);