mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
25 lines
562 B
Vue
25 lines
562 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>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|