Update src/app/page.tsx

This commit is contained in:
2026-03-19 16:12:45 +00:00
parent 1522e0e102
commit bb2bf743c5

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Products", id: "products" },
{ name: "Custom Cakes", id: "custom" },
{ name: "Gallery", id: "gallery" },
{ name: "Shop", id: "shop" },
{ name: "Contact", id: "contact" }
]}
button={{
@@ -236,7 +237,8 @@ export default function LandingPage() {
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Products", href: "#products" },
{ label: "Gallery", href: "#gallery" }
{ label: "Gallery", href: "#gallery" },
{ label: "Shop", href: "/products" }
]
},
{
@@ -262,4 +264,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}