1 Commits

Author SHA1 Message Date
c219f55f1d Bob AI: [Block: blog-card-two|Testimonial Blog Two|/blocks... 2026-02-04 12:29:46 +00:00

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>
);
}