Update src/app/contact/page.tsx

This commit is contained in:
2026-03-12 13:38:32 +00:00
parent 151bffa121
commit 8a69c47281

View File

@@ -8,17 +8,16 @@ import Link from "next/link";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Reviews", id: "reviews" },
{ name: "Guides", id: "guides" },
{ name: "Blog", id: "blog" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Reviews", id: "/reviews" },
{ name: "Guides", id: "/guides" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Discover",
items: [
title: "Discover", items: [
{ label: "Product Reviews", href: "/reviews" },
{ label: "Beauty Guides", href: "/guides" },
{ label: "Blog Articles", href: "/blog" },
@@ -26,8 +25,7 @@ export default function ContactPage() {
],
},
{
title: "Categories",
items: [
title: "Categories", items: [
{ label: "Skincare", href: "#" },
{ label: "Makeup", href: "#" },
{ label: "Lip Care", href: "#" },
@@ -35,8 +33,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "/contact" },
{ label: "Advertise", href: "#" },
@@ -44,8 +41,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclosure", href: "#" },
@@ -70,7 +66,7 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Shop Now", href: "/products" }}
button={{ text: "Shop Now", href: "/reviews" }}
brandName="Aura Hub Finds"
/>
</div>