diff --git a/client/src/components/RoomWidget.vue b/client/src/components/RoomWidget.vue
new file mode 100644
index 00000000..cf27bb93
--- /dev/null
+++ b/client/src/components/RoomWidget.vue
@@ -0,0 +1,39 @@
+
+
+
+
+
+
diff --git a/client/src/components/TopNavigation.vue b/client/src/components/TopNavigation.vue
index 9da55728..79567e36 100644
--- a/client/src/components/TopNavigation.vue
+++ b/client/src/components/TopNavigation.vue
@@ -1,7 +1,7 @@
diff --git a/client/src/pages/index.vue b/client/src/pages/index.vue
index 58b39a1e..7d56546f 100644
--- a/client/src/pages/index.vue
+++ b/client/src/pages/index.vue
@@ -11,6 +11,9 @@
Modul
+
+ Räume
+
diff --git a/client/src/pages/rooms.vue b/client/src/pages/rooms.vue
new file mode 100644
index 00000000..22beb961
--- /dev/null
+++ b/client/src/pages/rooms.vue
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/client/src/router/index.js b/client/src/router/index.js
index 0b530eb8..c3bb937d 100644
--- a/client/src/router/index.js
+++ b/client/src/router/index.js
@@ -4,11 +4,13 @@ import index from '@/pages/index'
import topic from '@/pages/topic'
import book from '@/pages/book'
import module from '@/pages/module'
+import rooms from '@/pages/rooms'
import p404 from '@/pages/p404'
const routes = [
{path: '/', name: 'index', component: index},
{path: '/module', name: 'module', component: module},
+ {path: '/rooms', name: 'rooms', component: rooms},
{
path: '/book',
name: 'book',