rsnext/examples/cms-storyblok/components/more-stories.js

24 lines
753 B
JavaScript

import PostPreview from './post-preview'
export default function MoreStories({ posts }) {
return (
<section>
<h2 className="mb-8 text-6xl md:text-7xl font-bold tracking-tighter leading-tight">
More Stories
</h2>
<div className="grid grid-cols-1 md:grid-cols-2 md:col-gap-16 lg:col-gap-32 row-gap-20 md:row-gap-32 mb-32">
{posts.map((post) => (
<PostPreview
key={post.slug}
title={post.content.title}
coverImage={post.content.image}
date={post.first_published_at || post.published_at}
author={post.content.author}
slug={post.slug}
excerpt={post.content.intro}
/>
))}
</div>
</section>
)
}