Revert "fix(resume): prevent orphaned section headings at page break (#2851)" (#2920)

This reverts commit 775f625f6e.

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Amruth Pillai
2026-04-26 01:23:22 +02:00
committed by GitHub
parent ff0ef12ecc
commit 76e00ae019
@@ -21,9 +21,7 @@ export function PageSection<T extends SectionType>({ type, className, children }
return (
<section className={cn(`page-section page-section-${type}`, className)}>
<h6 className="mb-1.5 text-(--page-primary-color) print:break-after-avoid">
{section.title || getSectionTitle(type)}
</h6>
<h6 className="mb-1.5 text-(--page-primary-color)">{section.title || getSectionTitle(type)}</h6>
<div
className="section-content grid gap-x-(--page-gap-x) gap-y-(--page-gap-y)"