Files
gebos-landing/src/components/partner/WhatIsUvi.tsx
T
Lars Nolden 5e0a26677e initial
2026-06-23 21:17:01 +02:00

24 lines
656 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
)
}