feat: implement basic home page
This commit is contained in:
parent
6b7fab0077
commit
8e9dd596a3
2 changed files with 31 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="left-column">
|
<div id="left-column">
|
||||||
<NuxtLink id="home-button" href="/">
|
<NuxtLink id="home-button" href="/home">
|
||||||
<img class="sidebar-icon" src="/public/icon.svg"/>
|
<img class="sidebar-icon" src="/public/icon.svg"/>
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<div id="servers-list">
|
<div id="servers-list">
|
||||||
|
|
30
pages/home.vue
Normal file
30
pages/home.vue
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<template>
|
||||||
|
<NuxtLayout>
|
||||||
|
<div id="left-bar">
|
||||||
|
</div>
|
||||||
|
<div id="middle-bar">
|
||||||
|
<h1>
|
||||||
|
Welcome to gorb :3
|
||||||
|
</h1>
|
||||||
|
<p>
|
||||||
|
Click on a server 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>
|
Loading…
Add table
Add a link
Reference in a new issue