Started to design the general chat-page

This commit is contained in:
joschuatonn
2024-05-04 14:25:25 +02:00
parent ab1c4d0705
commit ef105ded6d
7 changed files with 63 additions and 149 deletions

View File

@@ -1,17 +1,14 @@
<script setup lang="ts">
import { RouterView } from 'vue-router';
import ProtectedData from './components/ProtectedData.vue';
import IndexPage from 'pages/IndexPage.vue';
defineOptions({
name: 'App'
});
</script>
<template>
<header>
<img alt="Quasar logo" src="./assets/quasar-logo-vertical.svg" width="200vw"/>
<ProtectedData />
</header>
<IndexPage></IndexPage>
<router-view />
</template>