From 35d0c708ddc2f4633e6b1f6b424ce8b112c6fad4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:22:27 +0000 Subject: [PATCH] Add src/app/blog/page.tsx --- src/app/blog/page.tsx | 96 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 src/app/blog/page.tsx diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..8b5daf7 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import BlogCardOne from "@/components/sections/blog/BlogCardOne"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { useBlogPosts } from "@/hooks/useBlogPosts"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Heart, Leaf, Mail, Sparkles } from "lucide-react"; + +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" }, + ], + }, +]; + +export default function BlogPage() { + const { posts, isLoading } = useBlogPosts(); + + return ( + + + + + {isLoading ? ( +
+

Loading posts...

+
+ ) : ( +
+ +
+ )} + + +
+
+ ); +} + -- 2.49.1