Featured Posts
{items.map((item, index) => (
{item.imagePosition === "header" && (
)}
{item.title}
{item.description.map((desc, i) => (
{desc}
))}
{item.image.type === "fill" ? (
) : (
item.imagePosition === "content" && (
)
)}
))}
{/* Background decoration */}
<>
>
);
};
export default FeaturedPosts;