New blog
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m3s

This commit is contained in:
2026-06-08 19:31:19 -04:00
parent 581f888218
commit 358e9cee4a
20 changed files with 586 additions and 102 deletions

View File

@@ -10,7 +10,6 @@ import type { ComponentPropsWithoutRef, ReactNode } from 'react';
import { TableOfContents } from '@/components/mdx/TableOfContents';
import { SideNote } from '@/components/mdx/SideNote';
import { Citation, Bibliography } from '@/components/mdx/Citation';
import { MobileTableOfContents } from '@/components/mdx/MobileTableOfContents';
import { formatPostDate } from '@/lib/format';
const slugify = (text: string): string => {
@@ -261,8 +260,6 @@ export default async function BlogPost({ params }: Props) {
</p>
</header>
<MobileTableOfContents headings={headings} />
<div className="essay-prose relative mt-8 max-w-none xl:max-w-[44rem]">
<MDXRemote
source={post.content}