forked from fayazara/zooper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
63 lines (55 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<template>
<NuxtLoadingIndicator color="#14b8a6" />
<AppNavbar />
<div class="h-28 max-h-[10vh]"></div>
<UContainer>
<NuxtPage />
</UContainer>
<div class="h-32"></div>
<AppFooter />
<UNotifications />
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-leave-to {
opacity: 0;
transform: translateY(-5px);
}
.page-enter-from {
opacity: 0;
transform: translateY(5px);
}
</style>
<script setup lang="ts">
useHead({
title: 'WiQuizz - Quizz dynamiques wikidata et sparql',
meta: [
{ name: 'description', content: 'Expérimentations et projets de développement sur les données - sparql - wikidata' },
{ name : 'theme-color', content : 'teal'},
{ name : 'robots', content : 'index, follow'},
{ name : 'author', content : 'A B'},
{ property : 'og:image', content : 'https://dev-lab-one.vercel.app/sparql/sparql-vuejs-personnes-wikipedia.png'},
{ property : 'og:url', content : 'https://dev-lab-one.vercel.app/'},
{ property : 'og:type', content : 'website'},
{ property : 'og:title', content : 'WiQuizz - Quizz dynamiques wikidata et sparql'},
{ property : 'og:description', content : 'Expériences et projets de développement sur les données'},
{ name : 'google-site-verification', content : 'PHAJkMWsS9my1gW-Q8KTd-WvO2UHfAoMBNZGr7e1L10'} // google search console
],
bodyAttrs: {
class: "antialiased bg-gray-50 dark:bg-black min-h-screen",
},
htmlAttrs: {
lang: "fr",
class : 'dark h-full'
},
// script: [ { innerHTML: 'console.log(\'Hello world\')' } ]
})
</script>
<style>
.my-override-container {
@apply max-w-4xl px-4 self-center min-h-screen;
}
</style>