-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.vue
43 lines (36 loc) · 927 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<script setup>
useHead({
htmlAttrs: { lang: 'en' },
link: [{ rel: 'icon', href: '/icon.png' }]
})
useSeoMeta({
viewport: 'width=device-width, initial-scale=1, maximum-scale=1',
title: 'Social Media Downloaders',
description:'Social Media Downloaders',
ogImage: '/icon.png',
twitterImage: '/icon.png',
twitterCard: 'summary_large_image'
})
</script>
<template>
<UContainer class="min-h-screen flex flex-col justify-center">
<div class="mb-2 text-right">
</div>
<NuxtPage />
<footer class="text-center mt-2">
<NuxtLink
href="https://github.com/Qewertyy/Social-DL"
target="_blank"
class="text-sm text-gray-500 hover:text-gray-700"
>
GitHub
</NuxtLink>
</footer>
</UContainer>
<UNotifications />
</template>
<style lang="postcss">
body {
@apply font-sans text-gray-950 bg-gray-50 dark:bg-black dark:text-gray-50;
}
</style>