diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx
index e60e0d5..86321de 100644
--- a/app/posts/[slug]/page.tsx
+++ b/app/posts/[slug]/page.tsx
@@ -1,17 +1,4 @@
import { notFound } from 'next/navigation'
-import { MDXRemote } from 'next-mdx-remote/rsc'
-import { getMDXComponents } from '@/mdx-components'
-import remarkMath from 'remark-math'
-import remarkGfm from 'remark-gfm'
-import smartypants from 'remark-smartypants'
-import rehypePrettyCode from 'rehype-pretty-code'
-import { transformerCopyButton } from '@rehype-pretty/transformers'
-import rehypeAutolinkHeadings from 'rehype-autolink-headings'
-import rehypeKatex from 'rehype-katex'
-import rehypeSlug from 'rehype-slug'
-import rehypeExternalLinks from 'rehype-external-links'
-import type { Element } from 'hast'
-import type { LineElement } from 'rehype-pretty-code'
import { getPosts, getPost } from '@/lib/posts'
import { TableOfContents } from '@/components/blog/TableOfContents'
import { ScrollToTop } from '@/components/ui/ScrollToTop'
@@ -38,6 +25,8 @@ export default async function PostPage({ params }: { params: Promise<{ slug: str
if (!post) notFound()
+ const { default: PostContent } = await import(`@/content/posts/${slug}.mdx`)
+
return (
<>