diff --git a/app.vue b/app.vue
index 5cd504e..d3971a3 100644
--- a/app.vue
+++ b/app.vue
@@ -1,7 +1,16 @@
-
+
+
+
+
+
+
+
+
+
+
diff --git a/helpers/eventBus.ts b/helpers/eventBus.ts
index 34c3187..a3a3a11 100644
--- a/helpers/eventBus.ts
+++ b/helpers/eventBus.ts
@@ -1,5 +1,7 @@
import mitt from "mitt";
-const eventBus = mitt();
+type Events = {
+ toggleSidebar: void;
+};
-export { eventBus };
+export const eventBus = mitt();
diff --git a/layouts/default.vue b/layouts/default.vue
index 94f1200..96f312d 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -1,221 +1,58 @@
-
-