shivam + claude changes
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 28s

This commit is contained in:
Shivam Patel
2026-02-08 23:18:21 -05:00
parent 3174638dd3
commit c0ffc01b88
26 changed files with 342 additions and 86 deletions

View File

@@ -1,7 +1,17 @@
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();