Update src/app/blog/page.tsx

This commit is contained in:
2026-02-18 16:20:19 +00:00
parent d031196866
commit bdda53ba29

View File

@@ -32,7 +32,7 @@ export default function BlogPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[{ name: "Home", id: "/" }, { name: "About Us", id: "about" }, { name: "Services", id: "features" }, { name: "Our Impact", id: "metrics" }, { name: "Contact", id: "contact" }]}
navItems={[{ name: "Home", id: "/" }, { name: "Blog", id: "/blog" }]}
brandName="TechSolutions"
bottomLeftText="Innovating the Future"
bottomRightText="info@techsolutions.com"
@@ -62,23 +62,23 @@ export default function BlogPage() {
columns={[
{
title: "Services", items: [
{ label: "Cloud Solutions", href: "features" },
{ label: "Cybersecurity", href: "features" },
{ label: "Software Development", href: "features" },
{ label: "IT Consulting", href: "features" },
{ label: "Cloud Solutions", href: "/#features" },
{ label: "Cybersecurity", href: "/#features" },
{ label: "Software Development", href: "/#features" },
{ label: "IT Consulting", href: "/#features" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Our Impact", href: "metrics" },
{ label: "Testimonials", href: "testimonials" },
{ label: "About Us", href: "/#about" },
{ label: "Our Impact", href: "/#metrics" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "Careers", href: "/careers" },
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "faq" },
{ label: "FAQ", href: "/#faq" },
{ label: "Blog", href: "/blog" },
{ label: "Support", href: "mailto:support@techsolutions.com" },
],