0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2025-01-05 07:01:14 +00:00

change how the main page is rendered

This commit is contained in:
Kenny 2022-03-02 14:11:16 -05:00
parent 59e146c67a
commit 46fff80aa7
3 changed files with 15 additions and 2 deletions

View file

@ -24,7 +24,7 @@
<div class="accent" style="height: 100%">
<div class="background">
<searchOverlay v-if="search" />
<nuxt v-if="!search" />
<nuxt v-show="!search" />
</div>
</div>

View file

@ -20,7 +20,7 @@ export default {
//--- Default NUXT Stuff ---//
head: {
title: 'BetterTube',
title: 'VueTube',
htmlAttrs: {
lang: 'en'
},

13
NUXT/pages/about.vue Normal file
View file

@ -0,0 +1,13 @@
<template>
<center class="pageTitle">
<h1>VueTube</h1>
<v-btn><v-icon>mdi-github</v-icon></v-btn>
<v-btn><v-icon>mdi-discord</v-icon></v-btn>
</center>
</template>
<style scoped>
.pageTitle {
margin-bottom: 2em;
}
</style>