Update src/app/shop/page.tsx

This commit is contained in:
2026-05-11 09:17:22 +00:00
parent c031d8dd09
commit bb6850e3aa

View File

@@ -7,7 +7,18 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function ShopPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<NavbarStyleFullscreen
brandName="GreenScape"
navItems={[
@@ -42,6 +53,7 @@ export default function ShopPage() {
{ title: "Company", items: [{ label: "About", href: "/#about" }] },
]}
bottomLeftText="© 2026 GreenScape Landscaping"
bottomRightText="All rights reserved."
/>
</ThemeProvider>
);