mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
feat: backup text if no lore
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 gap-8 mt-8 md:grid-cols-2 lg:grid-cols-3">
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="/champions">
|
||||
|
||||
<x-iconsax-bul-personalcard class="h-10 text-orange-400"/>
|
||||
@@ -25,7 +25,7 @@
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="/skins">
|
||||
<x-iconsax-bul-paintbucket class="h-10 text-orange-400"/>
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="#">
|
||||
<x-iconsax-bul-3d-cube-scan class="h-10 text-orange-400"/>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="#">
|
||||
<x-iconsax-bul-money-change class="h-10 text-orange-400"/>
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="#">
|
||||
<x-iconsax-bul-receipt-edit class="h-10 text-orange-400"/>
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<a class="block p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
<a class="block p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10"
|
||||
href="#">
|
||||
<x-iconsax-bul-message-question class="h-10 text-orange-400"/>
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
</div>
|
||||
<div class="grid grid-cols-1 gap-4 mt-8 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-3">
|
||||
@foreach ($latestSkins as $skin)
|
||||
@if ($loop->index < 9)
|
||||
@if ($loop->index < 6)
|
||||
<div
|
||||
class="p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10">
|
||||
class="p-8 transition bg-stone-800/40 border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10">
|
||||
<div class="flex flex-col">
|
||||
<div class="flex flex-col items-center justify-center">
|
||||
<img loading="lazy" class="border-2 border-orange-400/40 rounded-xl"
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<div class="grid grid-cols-1 gap-4 mt-8 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-3">
|
||||
@foreach ($upcomingSkins as $skin)
|
||||
<div
|
||||
class="p-8 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10">
|
||||
class="p-8 bg-stone-800/40 transition border shadow-xl border-stone-800 rounded-xl hover:border-orange-500/10 hover:shadow-orange-500/10">
|
||||
<div class="flex flex-col">
|
||||
<div class="flex flex-col items-center justify-center">
|
||||
<img loading="lazy" class="border-2 border-orange-400/40 rounded-xl"
|
||||
|
||||
Reference in New Issue
Block a user