Cambios en vistas de catalogo, mejoras visuales y creado componente para ver el producto como invitado

This commit is contained in:
BryamE
2025-12-11 13:03:22 -03:00
parent 09a4619e7f
commit ffe39d8d98
4 changed files with 48 additions and 6 deletions
+14 -4
View File
@@ -1,4 +1,14 @@
<x-appc>
<x-slot name="title">Lauck - Inicio</x-slot>
<x-slot name="navTitle">Bienvenido</x-slot>
</x-appc>
<x-layout title="Home - Lauck">
<x-section-header subtitle="Inicio" title="Bicicleteria " highlight="Lauck"/>
<!-- Tarjeta Catálogo -->
<div class="grid grid-cols-2 w-full h-80">
<a href="{{ url('/catalogo') }}" class="p-6 bg-gradient-to-br from-neutral-800 to-neutral-900 border border-neutral-700 rounded-xl flex flex-col justify-center items-center text-center hover:border-neon-lime transition-all">
<span class="text-4xl font-black text-white">85%</span>
<span class="text-xs uppercase tracking-widest text-gray-500 mt-1">Eficiencia Taller</span>
<div class="w-full bg-gray-700 rounded-full h-1.5 mt-4">
<div class="bg-neon-lime h-1.5 rounded-full" style="width: 85%"></div>
</div>
</a>
</div>
</x-layout>