Update page.tsx

This commit is contained in:
MacRimi 2025-02-16 12:47:02 +01:00 committed by GitHub
parent 65a81e3366
commit f185ff9f61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,6 @@ import matter from "gray-matter"
import dynamic from "next/dynamic"
import React from "react"
import parse from "html-react-parser"
import Footer from "@/components/footer2"
const CopyableCode = dynamic(() => import("@/components/CopyableCode"), { ssr: false })
@ -97,7 +96,6 @@ export default async function GuidePage({ params }: { params: { slug: string } }
{metadata?.description && <p className="text-lg text-gray-700 mb-8">{metadata.description}</p>}
<div className="prose max-w-none text-[16px]">{parsedContent}</div>
</div>
</footer2>
</div>
)
}