This commit is contained in:
MacRimi
2025-02-15 12:06:36 +01:00
parent 6d61103585
commit cf91529575
2 changed files with 9 additions and 8 deletions

View File

@@ -39,8 +39,10 @@ export default async function GuidePage({ params }: { params: { slug: string } }
const guideContent = await getGuideContent(params.slug)
return (
<div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-8 text-gray-900">
<GuideContent content={guideContent} />
<div className="min-h-screen bg-white">
<div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-8 text-gray-900">
<GuideContent content={guideContent} />
</div>
</div>
)
}
}