This commit is contained in:
Lars Nolden
2026-06-23 21:17:01 +02:00
commit 5e0a26677e
72 changed files with 8592 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { GradientCallout } from '@/components/partner/GradientCallout'
export function WhatIsUvi() {
return (
<section
id="was-ist-uvi"
aria-labelledby="what-is-uvi-title"
className="py-8 sm:py-10"
>
<GradientCallout
title="Was ist UVI?"
titleId="what-is-uvi-title"
cta={{ href: '/was-ist-uvi', label: 'Mehr erfahren' }}
>
<p>
Die Unterjährige Verbrauchsinformation (UVI) informiert Mieter
monatlich über ihren Heiz- und Warmwasserverbrauch verpflichtend bei
fernablesbaren Messgeräten.
</p>
</GradientCallout>
</section>
)
}