Update src/app/contact/page.tsx

This commit is contained in:
2026-03-12 13:41:59 +00:00
parent 2b952680a2
commit 326b6ae7d2

View File

@@ -9,6 +9,7 @@ import Link from "next/link";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Reviews", id: "/reviews" },
{ name: "Guides", id: "/guides" },
{ name: "Blog", id: "/blog" },
@@ -66,7 +67,7 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Shop Now", href: "/reviews" }}
button={{ text: "Shop Now", href: "/products" }}
brandName="Aura Hub Finds"
/>
</div>
@@ -93,4 +94,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}