fixes
All checks were successful
Deploy App / deploy (push) Successful in 30s

This commit is contained in:
valere
2025-08-29 16:53:14 +02:00
parent 342a7a7e0a
commit 87f0cbb2cd
10 changed files with 130 additions and 464 deletions

View File

@@ -0,0 +1,17 @@
<template>
<section class="py-4 sm:flex justify-center items-center">
<button @click="scrollDown"
class="p-6 h-14 leading-3 flex justify-center bg-green-500 text-white text-lg capitalize font-semibold mb-4 sm:mb-0 rounded-full shadow-md hover:bg-green-400 focus:outline-none focus:ring-4 hover:ring-indigo-200 focus:ring-indigo-300 focus:ring-opacity-100 transition-all">
</button>
</section>
</template>
<script setup>
function scrollDown() {
window.scrollBy({
top: window.innerHeight, // une hauteur décran
behavior: 'smooth' // animation fluide
})
}
</script>