import { Link } from "@repo/i18n/routing" import { Typography } from "@repo/ui/Design/Typography" import { Section, SectionContent } from "@repo/ui/Layout/Section" import { getISODate } from "@repo/utils/dates" import type { BlogPost } from "./BlogPost.tsx" export interface BlogPostsProps { posts: BlogPost[] } export const BlogPosts: React.FC = (props) => { const { posts } = props return ( ) }