From fdd919ea790f9697496efdb46c89f181d973a89d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Feb 2026 10:32:19 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 94a5d08..5b9e53f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -6,6 +6,7 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import { useBlogPosts } from "@/hooks/useBlogPosts"; +import Link from 'next/link'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -29,12 +30,11 @@ export default function BlogPage() { brandName="Prestige Realty" navItems={[ { name: "Home", id: "/" }, - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Team", id: "team" }, - { name: "Contact", id: "contact" } + { name: "Properties", id: "/properties" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } ]} - button={{ text: "Schedule Tour", href: "contact" }} + button={{ text: "Schedule Tour", href: "/contact" }} /> @@ -88,14 +88,14 @@ export default function BlogPage() { }, { title: "Contact", items: [ - { label: "Schedule Tour", href: "#contact" }, - { label: "Contact Form", href: "#contact" }, + { label: "Schedule Tour", href: "/contact" }, + { label: "Contact Form", href: "/contact" }, { label: "Support", href: "#" }, { label: "Inquiries", href: "#" } ] } ]} - onPrivacyClick={null} + onPrivacyClick={() => console.log('Privacy clicked')} />