diff --git a/client/src/App.vue b/client/src/App.vue index 57cdccb..2bf3a18 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -5,12 +5,14 @@ import Signup from './components/Signup.vue' import Login from './components/Login.vue' import Clicker from './components/Clicker.vue' import ThemeToggle from './components/ThemeToggle.vue' +import Chat from './components/Chat.vue' const routes = { - '/': Clicker, + '/': Chat, '/signup': Signup, '/login': Login, '/button': Clicker, + '/chat': Chat, } const currentPath = ref(window.location.hash) diff --git a/client/src/components/Chat.vue b/client/src/components/Chat.vue new file mode 100644 index 0000000..6435d70 --- /dev/null +++ b/client/src/components/Chat.vue @@ -0,0 +1,70 @@ + + + + + +