diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index af74faa..e6172d8 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,52 +4,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -133,7 +88,7 @@
1756802819394
-
+
diff --git a/src/app/(site)/the-metatron/[slug]/page.tsx b/src/app/(site)/the-metatron/[slug]/page.tsx
deleted file mode 100644
index ed9ac1b..0000000
--- a/src/app/(site)/the-metatron/[slug]/page.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import MarkdocRenderer from '@/components/Markdoc/Renderer'
-import { getArticleBySlug, getArticles } from '@/lib/content/meta/articles'
-import { notFound } from 'next/navigation'
-
-interface Props {
- params: Promise<{
- slug: string
- }>
-}
-
-export async function generateStaticParams() {
- const articles = await getArticles()
- return articles.map(({ slug }) => ({ slug }))
-}
-
-export default async function MetaArticlePage({ params }: Props) {
- const { slug } = await params
- const article = await getArticleBySlug(slug)
-
- if (!article) {
- notFound()
- }
-
- return (
-
-
{article.title}
-
-
- )
-}