-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
38 lines (37 loc) · 990 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
<script setup>
useHead({
title: null,
titleTemplate: (title) => title ? `${title} - Incidir para Existir` : 'Incidir para Existir',
description: 'Unite a la revolución de jóvenes que quieren cambiar el mundo.',
htmlAttrs: {
lang: 'es'
},
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
}
]
})
useSeoMeta({
ogTitle: 'Incidir para existir',
description: 'Unite a la revolución de jóvenes que quieren cambiar el mundo.',
ogDescription: 'Unite a la revolución de jóvenes que quieren cambiar el mundo.',
ogImage: '/sharer.jpg',
twitterTitle: 'Incidir para existir',
twitterDescription: 'Unite a la revolución de jóvenes que quieren cambiar el mundo.',
twitterImage: '/sharer.jpg',
twitterCard: 'summary_large_image',
})
</script>
<template>
<div>
<NuxtLoadingIndicator color="#fb923c" />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UNotifications />
<UModals />
</div>
</template>