| import PostPreview from "./post-preview"; | |
| import PostType from "../types/postType"; | |
| type Props = { | |
| posts: PostType[]; | |
| }; | |
| export default function MoreStories({ posts }: Props) { | |
| 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:gap-x-16 lg:gap-x-32 gap-y-20 md:gap-y-32 mb-32"> | |
| {posts.map((post) => ( | |
| <PostPreview | |
| key={post.url} | |
| title={post.title} | |
| coverImage={post.featuredImage} | |
| date={post.date} | |
| author={post.author} | |
| slug={post.url} | |
| excerpt={post.excerpt} | |
| /> | |
| ))} | |
| </div> | |
| </section> | |
| ); | |
| } | |