diff --git a/.vscode/settings.json b/.vscode/settings.json
index 1f926c5b..44a9fd24 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,6 @@
{
"i18n-ally.localesPaths": [
"public/locales"
- ]
+ ],
+ "typescript.tsdk": "node_modules/typescript/lib"
}
\ No newline at end of file
diff --git a/src/components/UMBE_Footer.astro b/src/components/UMBE_Footer.astro
new file mode 100644
index 00000000..b142c4bc
--- /dev/null
+++ b/src/components/UMBE_Footer.astro
@@ -0,0 +1,10 @@
+---
+const currentYear = new Date().getFullYear();
+---
+
+
\ No newline at end of file
diff --git a/src/components/UMBE_Header.astro b/src/components/UMBE_Header.astro
new file mode 100644
index 00000000..40c23968
--- /dev/null
+++ b/src/components/UMBE_Header.astro
@@ -0,0 +1,45 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/UMBE_SidebarLeft.astro b/src/components/UMBE_SidebarLeft.astro
new file mode 100644
index 00000000..f1a8dda2
--- /dev/null
+++ b/src/components/UMBE_SidebarLeft.astro
@@ -0,0 +1,9 @@
+---
+import Navigation from "../components/UMBE_navcard.astro";
+---
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/UMBE_SidebarRight.astro b/src/components/UMBE_SidebarRight.astro
new file mode 100644
index 00000000..57b22141
--- /dev/null
+++ b/src/components/UMBE_SidebarRight.astro
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/UMBE_navcard.astro b/src/components/UMBE_navcard.astro
new file mode 100644
index 00000000..72a2214d
--- /dev/null
+++ b/src/components/UMBE_navcard.astro
@@ -0,0 +1,100 @@
+
+
+
+
+
+ Energieausweis erstellen❯
+
+
+
+
+
+
+
+ Welcher Energieausweis
+
+
+
+ Verbrauchsausweis❯
+
+
+
+
+ Bedarfsausweis❯
+
+
+
+
+ Energieausweis❯
+
+
+
+
+ EnEV Zusammenfassung - Archiv
+
+
+
+ Energieausweis Aussteller
+
+
+
+ Kundenbewertungen
+
+
+
+ FAQ
+
+
+
+ Für Entwickler
+
+
+
+
+
\ No newline at end of file
diff --git a/src/layouts/UMBE_Layout.astro b/src/layouts/UMBE_Layout.astro
new file mode 100644
index 00000000..f92c6f4f
--- /dev/null
+++ b/src/layouts/UMBE_Layout.astro
@@ -0,0 +1,96 @@
+---
+import i18next from "i18next";
+
+import "../style/UMBE_global.css";
+import "../../svelte-dialogs.config"
+import Footer from "../components/UMBE_Footer.astro";
+import Header from "../components/UMBE_Header.astro";
+import SidebarLeft from "../components/UMBE_SidebarLeft.astro";
+import SidebarRight from "../components/UMBE_SidebarRight.astro";
+import { NotificationWrapper } from "@ibcornelsen/ui";
+
+export interface Props {
+ title: string;
+}
+
+const { title } = Astro.props;
+
+
+---
+
+
+
+
+
+
+
+
+
+ {title || "Energieausweis online erstellen - Online Energieausweis"}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/UMBE_test.astro b/src/pages/UMBE_test.astro
new file mode 100644
index 00000000..a747887c
--- /dev/null
+++ b/src/pages/UMBE_test.astro
@@ -0,0 +1,16 @@
+---
+
+
+import Layout from "#layouts/UMBE_Layout.astro";
+
+
+---
+
+
+ HALLO
+
+
+
+
+
+
diff --git a/src/style/UMBE_global.css b/src/style/UMBE_global.css
new file mode 100644
index 00000000..f53e8063
--- /dev/null
+++ b/src/style/UMBE_global.css
@@ -0,0 +1,48 @@
+@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
+@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
+
+* {
+ font-weight: 400;
+ box-sizing: border-box;
+ font-family: "Abel", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+}
+
+
+
+
+
+
+
+
+
+article hr {
+ @apply mb-4 mt-4;
+}
+
+article {
+ @apply px-6 md:px-8 py-6 w-full relative bg-white;
+}
+
+article h1 {
+ @apply text-4xl font-normal my-4;
+}
+
+article h2 {
+ @apply text-2xl font-normal my-4;
+}
+
+article h3 {
+ @apply text-xl font-normal my-2;
+}
+
+article a {
+ @apply text-blue-700 font-medium text-lg;
+}
+
+article select {
+ @apply rounded-lg px-2 py-1.5 outline-none;
+}
+
+.checkbox {
+ @apply h-5 w-4 checkbox-secondary;
+}
\ No newline at end of file