fix on nginx and astro

Signed-off-by: Omar Sánchez Pizarro <omar.sanchez@pistacero.net>
This commit is contained in:
Omar Sánchez Pizarro
2026-01-21 01:09:57 +01:00
parent 3acad140c5
commit 626e3342d0
4 changed files with 22 additions and 9 deletions

View File

@@ -54,7 +54,7 @@
<div class="absolute inset-0 bg-gradient-to-r from-primary-700 to-teal-700 rounded-xl opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
</a>
<a
href="#instalacion"
href="/dashboard/"
class="inline-flex items-center justify-center px-8 py-4 text-lg font-semibold text-gray-900 dark:text-gray-100 bg-white/80 dark:bg-gray-800/80 backdrop-blur-sm rounded-xl hover:bg-white dark:hover:bg-gray-800 transition-all duration-300 border-2 border-gray-200 dark:border-gray-700 shadow-lg hover:shadow-xl transform hover:-translate-y-1"
>
Empezar gratis

View File

@@ -3,17 +3,13 @@ import Layout from '../layouts/Layout.astro';
import Hero from '../components/Hero.astro';
import Features from '../components/Features.astro';
import Platforms from '../components/Platforms.astro';
import HowItWorks from '../components/HowItWorks.astro';
import Pricing from '../components/Pricing.astro';
import CTA from '../components/CTA.astro';
---
<Layout title="Wallabicher - Monitoriza Marketplaces Automáticamente">
<Hero />
<Features />
<Platforms />
<HowItWorks />
<Pricing />
<CTA />
</Layout>