import { Button, Card, CardActions, CardContent, CardMedia, Typography } from "@mui/material"; import { getSortedPosts } from "@/content/posts"; import Image from "next/image"; import Link from "next/link"; export default function PostList() { const posts = getSortedPosts(); return ( posts.map((post) => ( { post.thumbnail && {post.title} } {post.title} {post.description ?? "No description yet."} )) ); }