diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 86af89e..fe28ac4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,12 +29,12 @@ export default function BlogPage() { brandName="InLight" navItems={[ { name: "Home", id: "/" }, - { name: "About Us", id: "about" }, - { name: "Solutions", id: "features" }, - { name: "Clients", id: "social-proof" }, - { name: "Contact", id: "contact" }, + { name: "About Us", id: "/#about" }, + { name: "Solutions", id: "/#features" }, + { name: "Clients", id: "/#social-proof" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Get a Quote", href: "#contact" }} + button={{ text: "Get a Quote", href: "/#contact" }} /> @@ -62,16 +62,16 @@ export default function BlogPage() { columns={[ { items: [ - { label: "Home", href: "#hero" }, - { label: "About Us", href: "#about" }, - { label: "Solutions", href: "#features" }, + { label: "Home", href: "/#hero" }, + { label: "About Us", href: "/#about" }, + { label: "Solutions", href: "/#features" }, ], }, { items: [ - { label: "Clients", href: "#social-proof" }, - { label: "Testimonials", href: "#testimonials" }, - { label: "Contact", href: "#contact" }, + { label: "Clients", href: "/#social-proof" }, + { label: "Testimonials", href: "/#testimonials" }, + { label: "Contact", href: "/#contact" }, ], }, ]}