mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
21 lines
523 B
Vue
21 lines
523 B
Vue
<template>
|
|
<center class="px-4">
|
|
<v-img
|
|
contain
|
|
style="margin-top: 5em; max-width: 80%; max-height: 15em"
|
|
src="/dev.svg"
|
|
/>
|
|
<h2
|
|
class="background--text mt-4"
|
|
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
|
|
>
|
|
Page Under Construction
|
|
</h2>
|
|
<p
|
|
class="background--text"
|
|
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
|
|
>
|
|
Please read the VueTube FAQ for more information.
|
|
</p>
|
|
</center>
|
|
</template>
|