--- import "../style/global.scss" import Footer from '../components/Footer.astro'; import Header from '../components/Header.astro'; import SidebarLeft from '../components/SidebarLeft.astro'; import SidebarRight from '../components/SidebarRight.astro'; export interface Props { title: string; } const { title } = Astro.props; const schema = JSON.stringify({ '@context': 'http://schema.org', '@type': 'Corporation', name: 'IB Cornelsen', alternateName: 'online-energieausweis.org', url: 'https://online-energieausweis.org', logo: 'https://online-energieausweis.org/ib-cornelsen.png', address: { '@type': 'PostalAddress', streetAddress: 'Katendeich 5A', addressLocality: 'Hamburg', postalCode: '21035', addressCountry: 'Deutschland', email: 'info@online-energieausweis.org', }, contactPoint: { '@type': 'ContactPoint', telephone: '+49-040-209339850', faxNumber: '+49-040-209339859', contactType: 'customer service', areaServed: 'DE', availableLanguage: 'German', }, }); --- {title || 'Energieausweis online erstellen - Online Energieausweis'}