Update src/app/blog/page.tsx

This commit is contained in:
2026-02-26 19:47:51 +00:00
parent 2b948fe25d
commit 51e7392a53

View File

@@ -29,10 +29,9 @@ export default function BlogPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Features", id: "features" }, { name: "About", id: "/about" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "/pricing" },
{ name: "Customers", id: "testimonials" }, { name: "Contact", id: "/contact" }
{ name: "Contact", id: "contact" }
]} ]}
brandName="AIFlow" brandName="AIFlow"
bottomLeftText="Enterprise AI Solutions" bottomLeftText="Enterprise AI Solutions"
@@ -85,4 +84,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }