51 lines
1.6 KiB
Vue
51 lines
1.6 KiB
Vue
<template>
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex flex-row justify-center pb-4 pt-2 py-4">
|
|
<!-- Facebook -->
|
|
<a href="https://www.facebook.com/profile.php?id=61556819217561">
|
|
<img src="/images/hutopymedia/icons/pink/facebookpink.png" alt="Facebook Logo">
|
|
</a>
|
|
<!-- Instagram -->
|
|
<a href="https://www.instagram.com/hutopy.inc/">
|
|
<img src="/images/hutopymedia/icons/pink/instagrampink.png" alt="Instagram Logo">
|
|
</a>
|
|
<!-- X / Twitter -->
|
|
<a href="https://twitter.com/Hutopyinc">
|
|
<img src="/images/hutopymedia/icons/pink/xpink.png" alt="X Logo">
|
|
</a>
|
|
</div>
|
|
|
|
<div class="py-4">
|
|
<RouterLink class="nav-button font-weight-bold" to="/join">Aidez-nous</RouterLink>
|
|
</div>
|
|
|
|
<div class="text-center ">
|
|
<RouterLink class="nav-button" to="/helpandcontact">Aide & Contact</RouterLink>
|
|
<RouterLink class="nav-button" to="/faq">FAQ</RouterLink>
|
|
<RouterLink class="nav-button" to="/guideforcreators">Guide pour les créateurs</RouterLink>
|
|
<RouterLink class="nav-button" to="/termsandconditions">Conditions générales</RouterLink>
|
|
<RouterLink class="nav-button" to="/contentpolicy">Politique de Contenu</RouterLink>
|
|
<RouterLink class="nav-button" to="/about">À Propos</RouterLink>
|
|
<RouterLink class="nav-button" to="/pricing">Frais</RouterLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.nav-button {
|
|
@apply rounded flex justify-center font-sans py-1;
|
|
}
|
|
|
|
.nav-button:hover {
|
|
@apply text-purple-800 bg-gray-50;
|
|
}
|
|
|
|
img {
|
|
@apply m-2 w-10 h-10;
|
|
}
|
|
|
|
|
|
</style>
|
|
<script setup lang="ts">
|
|
</script> |