diff --git a/web/app/guides/[slug]/GuideContent.tsx b/web/app/guides/[slug]/GuideContent.tsx
index 037f82b..0aee350 100644
--- a/web/app/guides/[slug]/GuideContent.tsx
+++ b/web/app/guides/[slug]/GuideContent.tsx
@@ -24,19 +24,18 @@ export default function GuideContent({ content }: { content: string }) {
return (
h1]:text-3xl [&>h1]:sm:text-4xl [&>h1]:font-bold [&>h1]:mb-6
[&>h2]:text-2xl [&>h2]:font-semibold [&>h2]:mt-8 [&>h2]:mb-4
[&>h3]:text-xl [&>h3]:font-medium [&>h3]:mt-6 [&>h3]:mb-3
- [&>p]:mb-4 [&>p]:text-gray-600
+ [&>p]:mb-4 [&>p]:text-gray-700
[&>ul]:list-disc [&>ul]:pl-5 [&>ul]:mb-4
- [&>ul>li]:text-gray-600 [&>ul>li]:mb-2
+ [&>ul>li]:text-gray-700 [&>ul>li]:mb-2
[&>ol]:list-decimal [&>ol]:pl-5 [&>ol]:mb-4
- [&>ol>li]:text-gray-600 [&>ol>li]:mb-2
+ [&>ol>li]:text-gray-700 [&>ol>li]:mb-2
[&>a]:text-blue-600 [&>a:hover]:underline"
>
{processedContent}
)
}
-
diff --git a/web/app/guides/[slug]/page.tsx b/web/app/guides/[slug]/page.tsx
index c44fd05..911a2d1 100644
--- a/web/app/guides/[slug]/page.tsx
+++ b/web/app/guides/[slug]/page.tsx
@@ -39,8 +39,10 @@ export default async function GuidePage({ params }: { params: { slug: string } }
const guideContent = await getGuideContent(params.slug)
return (
-
-
+
)
-}
+}
\ No newline at end of file