Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 12:10:23 +00:00
parent 9a7c29b20a
commit fb271d351a

View File

@@ -30,27 +30,27 @@ export default function BlogPage() {
<NavbarStyleApple
brandName="Hookah Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/#products" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Головна", id: "/" },
{ name: "Продукція", id: "/#products" },
{ name: "Про нас", id: "/#about" },
{ name: "Особливості", id: "/#features" },
{ name: "Відгуки", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
{ name: "Контакти", id: "/#contact" }
]}
/>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
<p className="text-foreground">Завантаження дописів...</p>
</div>
) : (
<div id="blog" data-section="blog">
<BlogCardTwo
blogs={posts}
title="Latest Articles"
description="Insights and updates from our team"
title="Останні статті"
description="Ідеї та оновлення від нашої команди"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
@@ -63,22 +63,22 @@ export default function BlogPage() {
logoText="Hookah Haven"
columns={[
{
title: "Shop", items: [
{ label: "Hookahs", href: "/#products" },
{ label: "Tobacco", href: "/#products" },
{ label: "Charcoal", href: "/#products" },
{ label: "Accessories", href: "/#products" },
],
title: "Магазин", items: [
{ label: "Кальяни", href: "/#products" },
{ label: "Тютюн", href: "/#products" },
{ label: "Вугілля", href: "/#products" },
{ label: "Аксесуари", href: "/#products" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
title: "Компанія", items: [
{ label: "Про нас", href: "/#about" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{ label: "Контакти", href: "/#contact" }
]
}
]}
copyrightText="© 2024 Hookah Haven. All rights reserved."
copyrightText="© 2024 Hookah Haven. Всі права захищені."
/>
</div>
</ReactLenis>