feat: apply RichText to content sections and experience cards
ExperienceCard description switches from a plain <p> to RichText so rich-text HTML from PocketBase renders correctly. BioSection and IntroSection drop the prose class overrides — RichText handles typography consistently.
This commit is contained in:
@@ -14,5 +14,5 @@ export default async function BioSection() {
|
||||
notFound();
|
||||
}
|
||||
|
||||
return <RichText html={data.content} className="prose prose-lg max-w-none" />;
|
||||
return <RichText html={data.content} />;
|
||||
}
|
||||
|
||||
@@ -14,5 +14,5 @@ export default async function IntroSection() {
|
||||
notFound();
|
||||
}
|
||||
|
||||
return <RichText html={data.content} className="prose prose-lg max-w-none" />;
|
||||
return <RichText html={data.content} />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user