weekly seo

This commit is contained in:
2026-06-08 20:33:51 +02:00
parent d70a50f47a
commit e441bcb25f
8 changed files with 13106 additions and 17 deletions

View File

@@ -156,6 +156,27 @@ export default function SeoCategoryPage({ profile }: SeoCategoryPageProps) {
</div>
</section>
{profile.contentSections && profile.contentSections.length > 0 && (
<section className="comparison-context">
<div className="container comparison-context-grid">
{profile.contentSections.map((section) => (
<article key={section.title} className="comparison-context-card">
<p className="tag">{section.eyebrow}</p>
<h2>{section.title}</h2>
<p>{section.body}</p>
{section.bullets && (
<ul className="comparison-bullet-list comparison-bullet-list--dark">
{section.bullets.map((item) => (
<li key={item}>{item}</li>
))}
</ul>
)}
</article>
))}
</div>
</section>
)}
{/* Feature table */}
<section className="comparison-table-section" id="feature-table">
<div className="container">