-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
37 lines (34 loc) · 1.06 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
<script lang="ts" setup>
const logo = {
srTitle: 'Accueil',
rightClickUrl: 'https://le-classement.fr/design-kit'
}
const sameAs = useSameAs()
</script>
<template>
<Html dir="ltr">
<Head>
<SeoKit />
<SchemaOrgOrganization name="Le Classement des Associations" logo="/logo.png" :same-as="sameAs" url="https://le-classement.fr" />
</Head>
<Body>
<NuxtLink target="_blank" to="https://le-classement.fr" class="block bg-primary-base text-sm hover:underline" rel="noopener">
<BaseSection class="py-1 text-end">
Retourner sur le-classement.fr
</BaseSection>
</NuxtLink>
<TheHeader
sr-navigation-title="Navigation Primaire"
:logo="logo"
:dialog="{ srNavigationTitle: 'Navigation Primaire Mobile', srDialogButtonTitle: { open: 'Ouvrir le menu de navigation', close: 'Fermer le menu de navigation' } }"
/>
<main>
<NuxtPage />
</main>
<TheFooter
:logo="logo"
sr-navigation-title="Navigation Secondaire"
/>
</Body>
</Html>
</template>