Change router links for documentation.

This commit is contained in:
PascalMarchesseault
2024-10-11 12:12:48 -04:00
parent 648507b860
commit e02699b541
12 changed files with 124 additions and 68 deletions

View File

@@ -28,25 +28,25 @@ const brandingStore = useBrandingStore()
</div>
<div class="flex flex-row flex-wrap justify-center gap-4" >
<router-link to="/helpandcontact" :style="{color: brandingStore.colors.onBackground}">
<router-link to="helpandcontact" :style="{color: brandingStore.colors.onBackground}">
Aide & Contact
</router-link>
<router-link to="/faq" :style="{color: brandingStore.colors.onBackground}">
<router-link to="faq" :style="{color: brandingStore.colors.onBackground}">
FAQ
</router-link>
<router-link to="/guideforcreators" :style="{color: brandingStore.colors.onBackground}">
<router-link to="guideforcreators" :style="{color: brandingStore.colors.onBackground}">
Guide pour les créateurs
</router-link>
<router-link to="/termsandconditions" :style="{color: brandingStore.colors.onBackground}">
<router-link to="termsandconditions" :style="{color: brandingStore.colors.onBackground}">
Termes et Conditions
</router-link>
<router-link to="/contentpolicy" :style="{color: brandingStore.colors.onBackground}">
<router-link to="contentpolicy" :style="{color: brandingStore.colors.onBackground}">
Politique de Contenu
</router-link>
<router-link to="/about" :style="{color: brandingStore.colors.onBackground}">
<router-link to="about" :style="{color: brandingStore.colors.onBackground}">
À Propos
</router-link>
<router-link to="/pricing" :style="{color: brandingStore.colors.onBackground}">
<router-link to="pricing" :style="{color: brandingStore.colors.onBackground}">
Frais
</router-link>
</div>