-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
36 lines (33 loc) · 1.41 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
<script setup lang="ts">
useHead({
title: 'Mouvement National Lycéen - Premier syndicat lycéen écologiste, antiraciste, antifasciste et révolutionnaire !',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'theme-color', content: '#5A3C5A' },
{ name: 'description', content: 'Premier syndicat lycéen écologiste, antiraciste, antifasciste et révolutionnaire !' },
{ name: 'og:title', content: 'Mouvement National Lycéen' },
{ name: 'og:description', content: 'Premier syndicat lycéen écologiste, antiraciste, antifasciste et révolutionnaire !' },
{ name: 'og:image', content: getImage('orgIllusImage') },
{ name: 'twitter:card', content: getImage('orgIllusImage') },
{ name: 'twitter:image', content: getImage('orgIllusImage') },
{ name: 'twitter:site', content: '@mnl_national' },
{ name: 'twitter:creator', content: '@mnl_national' },
{ name: 'twitter:title', content: 'Mouvement National Lycéen' },
{ name: 'twitter:description', content: 'Premier syndicat lycéen écologiste, antiraciste, antifasciste et révolutionnaire !' },
],
link: [
{ rel: 'icon', type: 'image/png', href: getImage('orgLogo') },
{ rel: 'apple-touch-icon', href: getImage('orgLogo') },
],
htmlAttrs: {
lang: 'fr',
},
})
</script>
<template>
<NuxtPage/>
<foot />
</template>
<style scoped lang="scss">
</style>