diff --git a/components.d.ts b/components.d.ts
index 393d330..b165ab7 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -11,5 +11,6 @@ declare module 'vue' {
NForm: typeof import('naive-ui')['NForm']
NFormItem: typeof import('naive-ui')['NFormItem']
NInput: typeof import('naive-ui')['NInput']
+ NMenu: typeof import('naive-ui')['NMenu']
}
}
diff --git a/resources/js/Layouts/BELayout.vue b/resources/js/Layouts/BELayout.vue
index a010bba..fcfe605 100644
--- a/resources/js/Layouts/BELayout.vue
+++ b/resources/js/Layouts/BELayout.vue
@@ -1,10 +1,12 @@
-
-
-
-
-
+
+
+
+
+
-
\ No newline at end of file
diff --git a/resources/js/Layouts/LoginLayout.vue b/resources/js/Layouts/LoginLayout.vue
new file mode 100644
index 0000000..0bec86b
--- /dev/null
+++ b/resources/js/Layouts/LoginLayout.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/js/components/MainNav.vue b/resources/js/components/MainNav.vue
new file mode 100644
index 0000000..528918b
--- /dev/null
+++ b/resources/js/components/MainNav.vue
@@ -0,0 +1,61 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/js/pages/Events/EventForm.vue b/resources/js/pages/Events/EventForm.vue
new file mode 100644
index 0000000..27e0f69
--- /dev/null
+++ b/resources/js/pages/Events/EventForm.vue
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/resources/js/pages/Events/EventsList.vue b/resources/js/pages/Events/EventsList.vue
new file mode 100644
index 0000000..d65dca5
--- /dev/null
+++ b/resources/js/pages/Events/EventsList.vue
@@ -0,0 +1,12 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/js/pages/Events/List.vue b/resources/js/pages/Events/List.vue
deleted file mode 100644
index 2dbfb27..0000000
--- a/resources/js/pages/Events/List.vue
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/resources/js/pages/Login.vue b/resources/js/pages/Login.vue
index afbda98..c91cc4d 100644
--- a/resources/js/pages/Login.vue
+++ b/resources/js/pages/Login.vue
@@ -1,6 +1,5 @@
- Login
-
+
- Einloggen
+ Anmelden
@@ -22,9 +21,9 @@
\ No newline at end of file
diff --git a/start/routes.ts b/start/routes.ts
index 40e5cd7..d4acda9 100644
--- a/start/routes.ts
+++ b/start/routes.ts
@@ -29,5 +29,9 @@ Route.get('/Login', async({inertia}) =>{
})
Route.get('/Events', async({inertia})=> {
- return inertia.render('Events/List')
+ return inertia.render('Events/EventsList')
+})
+
+Route.get('/Users', async({inertia}) => {
+ return inertia.render('Users/UsersList')
})
\ No newline at end of file