import { Link, Routes } from "blitz"; import type { Post } from "../../../integrations/datocms"; import { formatDate } from "../../core/helpers/date-formatter"; import PostPreview from "./post-preview"; type Props = { posts: Post[]; }; export default function MoreStories({ posts }: Props) { return ( ); }