we played with the colors and add wallet.vue

This commit is contained in:
PascalMarchesseault
2024-06-27 02:10:15 -04:00
parent 498cec3bb9
commit e6b2c71d54
9 changed files with 128 additions and 161 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="flex flex-col min-h-screen bg-white py-4 px-8">
<RouterLink class="nav-button font-weight-bold" to="/join">Aidez-nous</RouterLink>
<div class="flex flex-row justify-center pb-4 pt-2">
<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">
@@ -15,7 +15,12 @@
<img src="/images/hutopymedia/icons/pink/xpink.png" alt="X Logo">
</a>
</div>
<div class="absolute mt-40 text-center extra-small-text p-8">
<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>
@@ -25,13 +30,11 @@
<RouterLink class="nav-button" to="/pricing">Frais</RouterLink>
</div>
</div>
</template>
<style scoped>
.nav-button {
@apply rounded flex justify-center font-sans text-gray-800 py-1;
@apply rounded flex justify-center font-sans py-1;
}
.nav-button:hover {
@@ -42,9 +45,7 @@ img {
@apply m-2 w-10 h-10;
}
.extra-small-text {
font-size: 0.6rem; /* Ajustez cette valeur selon vos besoins */
}
</style>
<script setup lang="ts">
</script>