Files
online-energieausweis/src/layouts/WidgetLayout.astro
2025-01-03 13:43:28 +01:00

45 lines
841 B
Plaintext

---
import "../style/global.css";
import "../../svelte-dialogs.config"
import { NotificationWrapper } from "@ibcornelsen/ui";
export interface Props {
title: string;
}
const { title } = Astro.props;
---
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.jpg" />
<meta
name="description"
content="✅ Jetzt Ihren Energieausweis online erstellen. Erhalten Sie Ihren online Energieausweis rechtssicher und nach aktueller GEG (vormals EnEV) vom Diplom Ingenieur geprüft."
/>
<title>
{title || "Energieausweis online erstellen - Online Energieausweis"}
</title>
</head>
<body>
<main id="main"
class="w-full p-0">
<article>
<slot />
</article>
</main>
</body>
</html>