fix taduction
This commit is contained in:
parent
2be38141b5
commit
8c7e31dd19
@ -26,8 +26,8 @@
|
||||
"laravel/sail": "^1.41",
|
||||
"mockery/mockery": "^1.6",
|
||||
"nunomaduro/collision": "^8.6",
|
||||
"pestphp/pest": "^4.0",
|
||||
"pestphp/pest-plugin-laravel": "^4.0"
|
||||
"pestphp/pest": "^3.0",
|
||||
"pestphp/pest-plugin-laravel": "^3.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
||||
1392
composer.lock
generated
1392
composer.lock
generated
File diff suppressed because it is too large
Load Diff
BIN
public/build.zip
Normal file
BIN
public/build.zip
Normal file
Binary file not shown.
@ -37,15 +37,15 @@ const activeItemStyles = computed(
|
||||
|
||||
const mainNavItems: NavItem[] = [
|
||||
{
|
||||
title: 'Accueil',
|
||||
title: 'Home',
|
||||
href: '/', // Example route
|
||||
},
|
||||
{
|
||||
title: 'Tirage d’oracle',
|
||||
title: 'Reading cards',
|
||||
href: '/oracle-draw', // Example route
|
||||
},
|
||||
{
|
||||
title: 'Consultations',
|
||||
title: 'Booking',
|
||||
href: '/consultations', // Example route
|
||||
},
|
||||
{
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
class="relative z-10 mb-16 transform text-center text-4xl font-bold text-[var(--c-white)] transition-all duration-700 hover:scale-105 md:text-5xl"
|
||||
>
|
||||
<span class="relative inline-block">
|
||||
Explorez Nos Lectures
|
||||
Explore Our <span class="text-[var(--c-gold)]">Offerings</span>
|
||||
<span class="absolute -bottom-2 left-1/4 h-1 w-1/2 bg-gradient-to-r from-transparent via-[var(--c-gold)] to-transparent"></span>
|
||||
</span>
|
||||
</h2>
|
||||
@ -111,7 +111,7 @@
|
||||
class="group relative flex scale-105 flex-col gap-6 overflow-hidden rounded-2xl bg-gradient-to-br from-[#4c1d95] to-[#371a70] p-8 shadow-lg ring-2 ring-[var(--c-gold)] transition-all duration-500 hover:-translate-y-3 hover:scale-[1.03] hover:shadow-2xl"
|
||||
>
|
||||
<!-- Popular badge with animation -->
|
||||
<div class="absolute top-4 right-4 z-10">
|
||||
<div class="absolute top-4 right-4 z-10 hidden sm:block">
|
||||
<div class="relative">
|
||||
<div class="absolute -inset-1 animate-pulse rounded-full bg-[var(--c-gold)] opacity-75 blur"></div>
|
||||
<div class="relative rounded-full bg-[var(--c-gold)] px-3 py-1 text-xs font-bold text-[var(--c-purple)]">POPULAIRE</div>
|
||||
|
||||
@ -38,7 +38,7 @@ onMounted(() => {
|
||||
<img
|
||||
src="/logo-success.webp"
|
||||
alt="Logo"
|
||||
class="h-12 w-32 transition-transform duration-300 hover:scale-105 sm:h-14 sm:w-36"
|
||||
class="sm:bloc hidden h-12 w-32 transition-transform duration-300 hover:scale-105 sm:block sm:w-36"
|
||||
/>
|
||||
</div>
|
||||
<nav class="hidden items-center gap-6 md:flex lg:gap-10">
|
||||
@ -109,19 +109,19 @@ onMounted(() => {
|
||||
class="border-b border-white/10 py-5 text-xl font-semibold text-white transition-colors duration-300 hover:text-[var(--c-gold)]"
|
||||
href="/"
|
||||
@click="toggleMobileMenu"
|
||||
>Accueil</Link
|
||||
>Home</Link
|
||||
>
|
||||
<Link
|
||||
class="border-b border-white/10 py-5 text-xl font-semibold text-white transition-colors duration-300 hover:text-[var(--c-gold)]"
|
||||
href="/tirage"
|
||||
@click="toggleMobileMenu"
|
||||
>Tirages</Link
|
||||
>Readings</Link
|
||||
>
|
||||
<Link
|
||||
class="border-b border-white/10 py-5 text-xl font-semibold text-white transition-colors duration-300 hover:text-[var(--c-gold)]"
|
||||
href="/#testimonials"
|
||||
@click="toggleMobileMenu"
|
||||
>Témoignages</Link
|
||||
>Testimonials</Link
|
||||
>
|
||||
<button
|
||||
class="mystic-btn mystic-btn-primary group relative mt-8 inline-flex h-14 w-full items-center justify-center overflow-hidden rounded-full px-6 text-lg font-bold text-white shadow-lg transition-all duration-300"
|
||||
@ -130,7 +130,7 @@ onMounted(() => {
|
||||
toggleMobileMenu();
|
||||
"
|
||||
>
|
||||
<span class="relative z-10">Réserver une Session</span>
|
||||
<span class="relative z-10">Book a Session</span>
|
||||
</button>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user