import Link from "next/link"; import Avatar from "./avatar"; import DateComponent from "./date"; import CoverImage from "./cover-image"; function PostPreview({ title, coverImage, date, excerpt, author, slug, }: { title: string; coverImage: any; date: string; excerpt: string; author: any; slug: string; }) { return (

{title}

{excerpt}

{author && }
); } export default function MoreStories({ morePosts }: { morePosts: any[] }) { return (

More Stories

{morePosts.map((post) => ( ))}
); }