Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 23:24:03 +00:00
parent 7af3dd0c4c
commit 14cd66a4e4

View File

@@ -37,13 +37,13 @@ export default function BlogPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "About Us", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/#services" },
{ name: "About Us", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="SmileCare Dental"
button={{ text: "Book Appointment", href: "#contact" }}
button={{ text: "Book Appointment", href: "/#contact" }}
className="py-3 px-6 lg:px-12"
navItemClassName="text-foreground hover:text-primary-cta"
buttonClassName="shadow-lg"
@@ -77,30 +77,28 @@ export default function BlogPage() {
columns={[
{
title: "Services", items: [
{ label: "General Dentistry", href: "#services" },
{ label: "Cosmetic Dentistry", href: "#services" },
{ label: "Emergency Care", href: "#services" },
{ label: "General Dentistry", href: "/#services" },
{ label: "Cosmetic Dentistry", href: "/#services" },
{ label: "Emergency Care", href: "/#services" },
],
},
{
title: "About Us", items: [
{ label: "Our Story", href: "#about" },
{ label: "Our Team", href: "#about" },
{ label: "Patient Info", href: "#" },
{ label: "Our Story", href: "/#about" },
{ label: "Our Team", href: "/#about" },
{ label: "Patient Info", href: "/#" },
],
},
{
title: "Contact", items: [
{ label: "Location", href: "#contact" },
{ label: "Schedule Visit", href: "#contact" },
{ label: "Location", href: "/#contact" },
{ label: "Schedule Visit", href: "/#contact" },
{ label: "Call Us", href: "tel:+1234567890" },
],
},
]}
logoText="SmileCare Dental"
copyrightText="© 2024 SmileCare Dental. All rights reserved."
onPrivacyClick={null}
useInvertedBackground={true}
className="bg-background-accent"
/>
</div>