import Link from "next/link" import ReactMarkdown from "react-markdown" import styles from "../styles/BlogList.module.css" import Image from "next/image" function truncateSummary(content) { return content.slice(0, 200).trimEnd() } function reformatDate(fullDate) { const date = new Date(fullDate) return date.toDateString().slice(4) } const BlogList = ({ allBlogs }) => { return (