Update src/app/blog/page.tsx

This commit is contained in:
2026-02-21 14:28:35 +00:00
parent 68f5fdd58f
commit c88af9f2e8

View File

@@ -24,19 +24,21 @@ export default function BlogPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "#products" },
{ name: "About", id: "#about" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
]}
brandName="ChimiC&quot;h&quot;angaCo"
bottomLeftText="Taste the Tradition"
bottomRightText="Order Now!"
/>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/#products" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="ChimiC&quot;h&quot;angaCo"
bottomLeftText="Taste the Tradition"
bottomRightText="Order Now!"
/>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
@@ -53,32 +55,34 @@ export default function BlogPage() {
carouselMode="buttons"
/>
)}
<FooterBaseCard
logoText="ChimiC&quot;h&quot;angaCo"
columns={[
{
title: "Menu", items: [
{ label: "Beef Chimichanga", href: "#products" },
{ label: "Chicken Chimichanga", href: "#products" },
{ label: "Vegetarian Chimichanga", href: "#products" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Privacy Policy", href: "/privacy" },
],
},
]}
copyrightText="© 2024 ChimiC&quot;h&quot;angaCo. All rights reserved."
/>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="ChimiC&quot;h&quot;angaCo"
columns={[
{
title: "Menu", items: [
{ label: "Beef Chimichanga", href: "/#products" },
{ label: "Chicken Chimichanga", href: "/#products" },
{ label: "Vegetarian Chimichanga", href: "/#products" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Contact", href: "/#contact" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "/#faq" },
{ label: "Privacy Policy", href: "/privacy" },
],
},
]}
copyrightText="© 2024 ChimiC&quot;h&quot;angaCo. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);