From 5e2ecf6a1c31f490dfaa8d176180050dad48ea98 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:50:52 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 136 +++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 75 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 8b5daf7..99d1dd4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,45 +1,13 @@ -"use client"; +"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 ( - - - + +
+
+

Floral Design Blog

+

+ Discover the latest trends, tips, and inspiration from the world of floral design. +

+ +
+
+

Seasonal Arrangements

+

+ Learn how to create stunning seasonal floral arrangements that capture the essence of each time of year. +

+ March 15, 2024 +
+ +
+

Wedding Flower Trends

+

+ Explore the hottest wedding flower trends for 2024, from bold color palettes to sustainable choices. +

+ March 10, 2024 +
+ +
+

Care Tips for Fresh Flowers

+

+ Expert tips on how to extend the life of your fresh flower arrangements and keep them looking beautiful. +

+ March 5, 2024 +
+
+
+
+ +
+ ); +} \ No newline at end of file -- 2.49.1