Update src/app/blog/page.tsx

This commit is contained in:
2026-02-12 10:32:19 +00:00
parent 75792c414a
commit fdd919ea79

View File

@@ -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" }}
/>
</div>
@@ -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')}
/>
</div>
</ReactLenis>