frontend/pages/index.vue
JustTemmie 323178af6b
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
undo the last 6 merges i fucked up
2025-07-10 16:10:55 +02:00

30 lines
No EOL
429 B
Vue

<template>
<NuxtLayout>
<div id="left-bar">
</div>
<div id="middle-bar">
<h1>
Welcome to gorb :3
</h1>
<p>
Click on a guild to the left to view a guild.
<br>
Or click the button in the bottom left to join a guild.
</p>
</div>
<div id="right-bar">
</div>
</NuxtLayout>
</template>
<script lang="ts" setup>
definePageMeta({
layout: "client"
});
</script>
<style>
</style>