Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 12:25:01 +00:00
parent 95e5e73666
commit 5e6ad0b67b

View File

@@ -5,8 +5,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { useBlogPosts } from "@/hooks/useBlogPosts";
// New imports based on requirements
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
export default function BlogPage() {
@@ -27,17 +27,17 @@ export default function BlogPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
<NavbarStyleFullscreen
brandName="MyCo"
navItems={[
{name: "Home", id: "/"},
{name: "About", id: "/#about"},
{name: "Features", id: "/#features"},
{name: "Products", id: "/#products"},
{name: "Testimonials", id: "/#testimonials"},
{name: "FAQ", id: "/#faq"},
{name: "Blog", id: "/blog"},
{name: "Contact", id: "/#contact"}
]}
bottomLeftText="Innovation Hub"
bottomRightText="info@myco.com"
/>
</div>
@@ -59,25 +59,20 @@ export default function BlogPage() {
)}
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterLogoEmphasis
logoText="MyCo"
columns={[
{
title: "Solutions", items: [
{ label: "Products", href: "/#products" },
{ label: "Features", href: "/#features" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Blog", href: "/blog" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" }
]
}
{items: [
{label: "Products", href: "/#products"},
{label: "Features", href: "/#features"}
]},
{items: [
{label: "About Us", href: "/#about"},
{label: "Blog", href: "/blog"},
{label: "Shop", href: "/shop"},
{label: "Contact", href: "/#contact"}
]}
]}
copyrightText="© 2024 MyCo. All rights reserved."
/>
</div>
</ReactLenis>