15 lines
866 B
PHP
15 lines
866 B
PHP
@props(['href' => '#', 'title', 'description', 'linkText' => 'Ver detalles'])
|
|
|
|
<a href="{{ $href }}" class="group relative block p-6 bg-panel-bg border border-neutral-800 rounded-xl hover:border-neon-lime hover:-translate-y-1 transition-all duration-300 shadow-lg hover:shadow-neon-lime/20 h-full">
|
|
<!-- slot para SVG -->
|
|
<div class="absolute top-0 right-0 p-4 opacity-10 group-hover:opacity-100 transition-opacity">
|
|
{{ $slot }}
|
|
</div>
|
|
|
|
<h3 class="mt-4 text-xl font-bold text-white group-hover:text-neon-lime transition-colors">{{ $title }}</h3>
|
|
<p class="mt-2 text-sm text-gray-500">{{ $description }}</p>
|
|
|
|
<div class="mt-6 inline-flex items-center text-xs font-bold text-neon-lime uppercase tracking-wider">
|
|
{{ $linkText }} <span class="ml-2 group-hover:translate-x-1 transition-transform">→</span>
|
|
</div>
|
|
</a> |