fix: resolve hydration error by replacing <p> tags with <div> in mdx to prevent nested paragraph tags

Former-commit-id: f56ba44a62f5b101b046bff9f70809c05b8f55ac
This commit is contained in:
2026-05-07 13:40:11 +02:00
parent 121d03d335
commit b027cf94f9
2 changed files with 8 additions and 8 deletions

View File

@@ -60,9 +60,9 @@ description: Willkommen bei E-TIB GmbH
Wir sind die <span className="text-primary relative whitespace-nowrap">Experten<svg className="absolute -bottom-2 left-0 w-full h-3 text-primary/20" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 50 10 100 5" stroke="currentColor" strokeWidth="4" fill="none"/></svg></span> <br/>für Kabeltiefbau Wir sind die <span className="text-primary relative whitespace-nowrap">Experten<svg className="absolute -bottom-2 left-0 w-full h-3 text-primary/20" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 50 10 100 5" stroke="currentColor" strokeWidth="4" fill="none"/></svg></span> <br/>für Kabeltiefbau
</h3> </h3>
<p className="text-xl text-text-secondary leading-relaxed mb-8"> <div className="text-xl text-text-secondary leading-relaxed mb-8">
Die E-TIB GmbH ist ein leistungsfähiger und moderner Anbieter von technischen Dienstleistungen. Wir haben uns auf zukunftsweisende Kernbereiche der Infrastruktur spezialisiert. Die E-TIB GmbH ist ein leistungsfähiger und moderner Anbieter von technischen Dienstleistungen. Wir haben uns auf zukunftsweisende Kernbereiche der Infrastruktur spezialisiert.
</p> </div>
{/* Stats Grid */} {/* Stats Grid */}
<div className="grid grid-cols-2 gap-6 pt-8 border-t border-neutral-200"> <div className="grid grid-cols-2 gap-6 pt-8 border-t border-neutral-200">
@@ -107,9 +107,9 @@ description: Willkommen bei E-TIB GmbH
</div> </div>
<div className="bg-white rounded-2xl p-6 md:p-8 border-l-4 border-primary shadow-sm"> <div className="bg-white rounded-2xl p-6 md:p-8 border-l-4 border-primary shadow-sm">
<p className="text-neutral-dark text-lg md:text-xl leading-relaxed italic font-medium"> <div className="text-neutral-dark text-lg md:text-xl leading-relaxed italic font-medium">
"Wir führen bundesweite Bauleistungen für Industrie, Telekommunikationsanbieter und Stromversorgungsunternehmen mit höchster Zuverlässigkeit und Präzision durch." "Wir führen bundesweite Bauleistungen für Industrie, Telekommunikationsanbieter und Stromversorgungsunternehmen mit höchster Zuverlässigkeit und Präzision durch."
</p> </div>
</div> </div>
</div> </div>

View File

@@ -60,9 +60,9 @@ description: Welcome to E-TIB GmbH
We are the <span className="text-primary relative whitespace-nowrap">Experts<svg className="absolute -bottom-2 left-0 w-full h-3 text-primary/20" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 50 10 100 5" stroke="currentColor" strokeWidth="4" fill="none"/></svg></span> <br/>for Cable Construction We are the <span className="text-primary relative whitespace-nowrap">Experts<svg className="absolute -bottom-2 left-0 w-full h-3 text-primary/20" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 50 10 100 5" stroke="currentColor" strokeWidth="4" fill="none"/></svg></span> <br/>for Cable Construction
</h3> </h3>
<p className="text-xl text-text-secondary leading-relaxed mb-8"> <div className="text-xl text-text-secondary leading-relaxed mb-8">
E-TIB GmbH is an efficient and modern provider of technical services. We specialize in future-oriented core areas of infrastructure. E-TIB GmbH is an efficient and modern provider of technical services. We specialize in future-oriented core areas of infrastructure.
</p> </div>
{/* Stats Grid */} {/* Stats Grid */}
<div className="grid grid-cols-2 gap-6 pt-8 border-t border-neutral-200"> <div className="grid grid-cols-2 gap-6 pt-8 border-t border-neutral-200">
@@ -107,9 +107,9 @@ description: Welcome to E-TIB GmbH
</div> </div>
<div className="bg-white rounded-2xl p-6 md:p-8 border-l-4 border-primary shadow-sm"> <div className="bg-white rounded-2xl p-6 md:p-8 border-l-4 border-primary shadow-sm">
<p className="text-neutral-dark text-lg md:text-xl leading-relaxed italic font-medium"> <div className="text-neutral-dark text-lg md:text-xl leading-relaxed italic font-medium">
"Today, we carry out nationwide construction services for industry, telecommunications providers, and electricity supply companies with the highest reliability and precision." "Today, we carry out nationwide construction services for industry, telecommunications providers, and electricity supply companies with the highest reliability and precision."
</p> </div>
</div> </div>
</div> </div>