weekly seo
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user