import { blogs } from "@/.velite" import { BlogCard } from "@/components/blog-card" import { HighlightHeading, Subheading } from "@/components/site/typography" import { Box, Container, SimpleGrid, Stack } from "@chakra-ui/react" import { Metadata } from "next" export const metadata: Metadata = { title: "Blog", description: "Catch up on the latest updates and releases", openGraph: { images: `/og?title=Blog and Updates`, }, } export default function BlogPage() { const activeBlogs = blogs .filter((blog) => !blog.draft) .sort( (a, b) => new Date(b.publishedAt).getTime() - new Date(a.publishedAt).getTime(), ) return ( Blog and Updates Catch up on the latest updates and releases {activeBlogs.map((blog, index) => ( ))} ) }