Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 00:32:15 +00:00
parent 1835bcd5ef
commit f9c20b2afe

View File

@@ -29,10 +29,10 @@ export default function BlogPage() {
brandName="The Image Barbershop"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Barbers", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Book Now", id: "contact" },
{ name: "Services", id: "/#services" },
{ name: "Barbers", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Book Now", id: "/#contact" },
]}
/>
</div>
@@ -58,8 +58,8 @@ export default function BlogPage() {
<FooterLogoEmphasis
logoText="The Image Barbershop"
columns={[
{ items: [{ label: "Services", href: "services" }, { label: "Barbers", href: "team" }] },
{ items: [{ label: "Testimonials", href: "testimonials" }, { label: "Book Now", href: "contact" }] },
{ items: [{ label: "Services", href: "/#services" }, { label: "Barbers", href: "/#team" }] },
{ items: [{ label: "Testimonials", href: "/#testimonials" }, { label: "Book Now", href: "/#contact" }] },
{ items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }] }
]}
/>