Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 13:55:10 +00:00
parent 0de32933cc
commit 014ff4fe8d

View File

@@ -26,63 +26,69 @@ export default function BlogPage() {
headingFontWeight="light"
>
<ReactLenis root>
<NavbarStyleCentered
brandName="Kvitok"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "shop" },
{ name: "About Us", id: "about" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Order Now", href: "shop" }}
/>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
</div>
) : (
<BlogCardThree
blogs={posts}
title="From Our Blog"
description="Discover the latest stories, tips, and inspiration from the world of Kvitok."
tag="Insights"
tagIcon={BookOpen}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Kvitok"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About Us", id: "/#about" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact" },
]}
button={{ text: "Order Now", href: "/shop" }}
/>
)}
</div>
<FooterSimple
columns={[
{
title: "Shop", items: [
{ label: "Bouquets", href: "shop" },
{ label: "Occasions", href: "shop" },
{ label: "Seasonal", href: "shop" },
],
},
{
title: "About", items: [
{ label: "Our Story", href: "about" },
{ label: "Our Team", href: "about" },
{ label: "FAQ", href: "reviews" },
],
},
{
title: "Connect", items: [
{ label: "Contact Us", href: "contact" },
{ label: "Instagram", href: "https://instagram.com/kvitok" },
{ label: "Facebook", href: "https://facebook.com/kvitok" },
],
},
]}
bottomLeftText="© 2024 Kvitok. All rights reserved."
bottomRightText="Handcrafted with Love"
/>
<div id="blog" data-section="blog">
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
</div>
) : (
<BlogCardThree
blogs={posts}
title="From Our Blog"
description="Discover the latest stories, tips, and inspiration from the world of Kvitok."
tag="Insights"
tagIcon={BookOpen}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
/>
)}
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Shop", items: [
{ label: "Bouquets", href: "/shop" },
{ label: "Occasions", href: "/shop" },
{ label: "Seasonal", href: "/shop" },
],
},
{
title: "About", items: [
{ label: "Our Story", href: "/#about" },
{ label: "Our Team", href: "/#about" },
{ label: "FAQ", href: "/#reviews" },
],
},
{
title: "Connect", items: [
{ label: "Contact Us", href: "/#contact" },
{ label: "Instagram", href: "https://instagram.com/kvitok" },
{ label: "Facebook", href: "https://facebook.com/kvitok" },
],
},
]}
bottomLeftText="© 2024 Kvitok. All rights reserved."
bottomRightText="Handcrafted with Love"
/>
</div>
</ReactLenis>
</ThemeProvider>
);