frontend/pages/index.vue
2025-04-29 00:47:06 +02:00

16 lines
No EOL
270 B
Vue

<template>
<div id="main">
<h1 class="center">Welcome to Gorb, the best chat app in the WORLD!!!</h1>
<a href="/web" class="center">Go to web client</a>
</div>
</template>
<script lang="ts" setup>
</script>
<style>
#main {
text-align: center;
}
</style>