From b8fac0dabd06d8adf1eb36c024a9b6f71d0cd727 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 17:33:55 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 210aec5..b3c1441 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -7,32 +7,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -const footerColumns: FooterColumn[] = [ - { - title: "Product", - items: [ - { label: "Features", href: "/features" }, - { label: "Pricing", href: "/pricing" }, - { label: "FAQ", href: "/faq" }, - ], - }, - { - title: "Company", - items: [ - { label: "About", href: "/about" }, - { label: "Blog", href: "/blog" }, - { label: "Careers", href: "/careers" }, - ], - }, - { - title: "Resources", - items: [ - { label: "Documentation", href: "/docs" }, - { label: "Support", href: "/support" }, - { label: "Contact", href: "/contact" }, - ], - }, -]; +const bookingUrl = "/contact"; export default function BlogPage() { const { posts, isLoading } = useBlogPosts();