Update src/app/blog/page.tsx
This commit is contained in:
@@ -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" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user