diff --git a/src/App.vue b/src/App.vue
index affb903..d391378 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,22 +1,30 @@
-
- {{ this.applicationName }}
+
+
\ No newline at end of file
diff --git a/src/components/Data.vue b/src/components/Data.vue
new file mode 100644
index 0000000..fbf7ae1
--- /dev/null
+++ b/src/components/Data.vue
@@ -0,0 +1,18 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/MainMenu.vue b/src/components/MainMenu.vue
index 46f2cb1..45edb27 100644
--- a/src/components/MainMenu.vue
+++ b/src/components/MainMenu.vue
@@ -1,16 +1,17 @@
-
- -
- Startseite
-
- -
- Karte
-
- -
- Glossar
+
\ No newline at end of file
diff --git a/src/components/Search.vue b/src/components/Search.vue
index aacf4c5..126fecf 100644
--- a/src/components/Search.vue
+++ b/src/components/Search.vue
@@ -1,5 +1,11 @@
diff --git a/src/main.ts b/src/main.ts
index ab31503..12f9b31 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -5,6 +5,24 @@ import App from './App.vue'
const app = createApp(App)
-app.config.globalProperties.applicationName = 'Stadtratmonitor'
+app.config.globalProperties = {
+ ...app.config.globalProperties,
+ apiUri: 'https://jsonplaceholder.typicode.com/posts/',
+ applicationName: 'Stadtratmonitor',
+ menuEntries: {
+ 0: {
+ name: 'Startseite',
+ uri: '/',
+ },
+ 1: {
+ name: 'Karte',
+ uri: '/karte'
+ },
+ 2: {
+ name: 'Glossar',
+ uri: '/glossar'
+ }
+},
+}
app.mount('#app')