19 lines
285 B
Plaintext
19 lines
285 B
Plaintext
---
|
|
|
|
import Layout from "#layouts/Layout.astro";
|
|
import Widget2 from "#components/Widget2.svelte";
|
|
|
|
---
|
|
|
|
|
|
<Layout title="Welcher Energieausweis">
|
|
|
|
<h1 class="text-3xl">Welcher Energieausweis?</h1>
|
|
|
|
<div class="mt-12 m-auto w-[95%] relative">
|
|
<Widget2 client:load />
|
|
</div>
|
|
|
|
</Layout>
|
|
|