Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c219f55f1d |
@@ -243,4 +243,32 @@ const BlogCardTwo = ({
|
|||||||
|
|
||||||
BlogCardTwo.displayName = "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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user