Update page.tsx

This commit is contained in:
MacRimi 2025-02-16 13:10:47 +01:00 committed by GitHub
parent b9c4ff3f6f
commit 1311c366ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@ import matter from "gray-matter"
import dynamic from "next/dynamic"
import React from "react"
import parse from "html-react-parser"
import Footer2 from "@/components/footer2"
const CopyableCode = dynamic(() => import("@/components/CopyableCode"), { ssr: false })
@ -96,6 +97,7 @@ 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>
)
}