Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 14:14:42 +00:00
parent c15e203cc5
commit 21922d2808

View File

@@ -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" }}
/>
</div>
@@ -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" },
],
},
]}