···53535454 return (
5555 <>
5656- <header className="-mx-5 px-5">
5656+ <header className="max-w-2xl mx-auto w-full">
5757 <h1 className="font-bold before-hash-1">{post.title}</h1>
5858 <span className="text-base03">
5959 <FormattedDate date={new Date(Date.parse(post.createdAt))} />
6060 </span>
6161 </header>
62626363- <Markdown className="prose max-w-5xl pb-5">
6363+ <hr />
6464+6565+ <Markdown className="prose max-w-2xl mx-auto pb-5">
6466 {post.content}
6567 </Markdown>
6868+6969+ <hr />
7070+7171+ <p className="max-w-2xl mx-auto pb-5 prose">
7272+ Thanks for reading along, I hope you enjoyed this post.
7373+ If you did, maybe consider following me on <a href="https://bsky.app/profile/hayden.moe">Bluesky</a>,
7474+ and if you're feeling generous, maybe consider <a href="https://ko-fi.com/haydenuwu">buying me a coffee</a>.
7575+ I'm trying to write more this year, so I'll see you in the next post. 👋
7676+ </p>
6677 </>
6778 );
6879}