--- import Button from '@components/base/Button.astro'; interface Props { isAuthenticated: boolean; } const { isAuthenticated } = Astro.props; const MAX_MESSAGE_LENGTH = 500; ---
{!isAuthenticated ? (

Für das Kontaktformular müssen Sie sich anmelden.

) : (

0 / {MAX_MESSAGE_LENGTH}

)}