-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
39 lines (37 loc) · 1.36 KB
/
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
<script setup>
useHead({
title: 'UMPSA Connect',
link: [
{
rel: 'icon', href: '/favicon.ico', sizes: '48x48'
},
{
rel: 'icon', href: '/favicon.svg', sizes: 'any', type: 'image/svg+xml'
},
{
rel: 'apple-touch-icon', href: '/img/apple-touch-icon.jpeg'
}
],
htmlAttrs: {
lang: 'en'
}
})
useSeoMeta({
title: 'UMPSA Connect',
ogTitle: 'UMPSA Connect',
description: 'UMPSA Connect serves as a comprehensive solution to enhance communication, streamline information dissemination, foster engagement, and improve data security across the entire UMPSA community. By providing users with easy access to relevant information and facilitating seamless communication, the platform contributes to a more connected and informed campus environment.',
ogDescription: 'UMPSA Connect serves as a comprehensive solution to enhance communication, streamline information dissemination, foster engagement, and improve data security across the entire UMPSA community. By providing users with easy access to relevant information and facilitating seamless communication, the platform contributes to a more connected and informed campus environment.',
ogImage: '/img/login.png',
twitterCard: 'summary_large_image',
})
</script>
<template>
<NuxtPwaManifest />
<NuxtRouteAnnouncer />
<NuxtLoadingIndicator />
<VApp>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</VApp>
</template>