import type { Metadata } from 'next'; import Link from 'next/link'; import { getAllPosts } from '@/lib/mdx'; import { format } from 'date-fns'; export const metadata: Metadata = { title: 'Blog', description: 'Thoughts on software, deep learning, and research by Akshay Kolli.', openGraph: { title: 'Blog', description: 'Thoughts on software, deep learning, and research by Akshay Kolli.', }, }; export default function BlogIndex() { const posts = getAllPosts(); return (

Writing

Thoughts on software, design, and minimalism.

{posts.map((post) => (
{post.tags?.map(tag => ( {tag} ))}

{post.title}

{post.description}

Read more
))}
); }