Bob AI: [Block: blog-card-two|Testimonial Blog Two|/blocks...

This commit is contained in:
2026-02-04 12:29:46 +00:00
parent 5ca2ee122e
commit c219f55f1d

View File

@@ -243,4 +243,32 @@ const BlogCardTwo = ({
BlogCardTwo.displayName = "BlogCardTwo";
export default BlogCardTwo;
export default function Page() {
const { posts: fetchedPosts, isLoading } = useBlogPosts();
const blogs = fetchedPosts;
return (
<div>
<BlogCardTwo
blogs={blogs}
title="Blog Posts"
description="Explore our latest blog posts."
textboxLayout="vertical"
useInvertedBackground="light"
/>
{/* New section 'blog-card-two' */}
<BlogCardTwo
blogs={blogs}
title="More Blog Posts"
description="Discover more blog posts here."
textboxLayout="vertical"
useInvertedBackground="light"
/>
{/* FAQ section */}
<div>
<h2>FAQ</h2>
<p>Answers to frequently asked questions.</p>
</div>
</div>
);
}