--- import { site } from "../data/site"; interface Props { title?: string; text?: string; application?: boolean; } const { title = "Der direkte Draht zu uns", text = "Für Beratung, Angebot oder Reparatur erreichen Sie uns telefonisch oder per E-Mail.", application = false, } = Astro.props; const email = application ? site.applicationEmail : site.email; ---