mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
fix: skin duplicate bug
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
@vite('resources/js/app.js')
|
||||
</head>
|
||||
|
||||
<body class="antialiased bg-stone-900 dark">
|
||||
<body class="antialiased bg-stone-900 dark scroll-smooth">
|
||||
<x-navbar/>
|
||||
<x-champions.list_all :champions="$champions" :roles="$roles"/>
|
||||
|
||||
|
||||
@@ -23,7 +23,8 @@
|
||||
<!-- OpenGraph -->
|
||||
<meta property="og:site_name" content="Heimerdinger.LoL">
|
||||
<meta property="og:title" content="{{$champion->name}} • Heimerdinger.LoL">
|
||||
<meta property="og:description" content="Heimerdinger.LoL: {{$champion->name}} details showing all the information you need to know about {{$champion->name}}, {{$champion->title}}. {{substr($champion->lore, 0, 50)}}...">
|
||||
<meta property="og:description"
|
||||
content="Heimerdinger.LoL: {{$champion->name}} details showing all the information you need to know about {{$champion->name}}, {{$champion->title}}. {{substr($champion->lore, 0, 50)}}...">
|
||||
<meta property="og:locale" content="en">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:image" content="{{asset('img/og_image.png')}}">
|
||||
@@ -32,7 +33,8 @@
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:domain" content="heimerdinger.lol">
|
||||
<meta property="twitter:title" content="{{$champion->name}} • Heimerdinger.LoL">
|
||||
<meta property="twitter:description" content="Heimerdinger.LoL: {{$champion->name}} details showing all the information you need to know about {{$champion->name}}, {{$champion->title}}. {{substr($champion->lore, 0, 50)}}...">
|
||||
<meta property="twitter:description"
|
||||
content="Heimerdinger.LoL: {{$champion->name}} details showing all the information you need to know about {{$champion->name}}, {{$champion->title}}. {{substr($champion->lore, 0, 50)}}...">
|
||||
<meta property="twitter:image" content="{{asset('img/og_image.png')}}">
|
||||
|
||||
<link rel="preconnect" href="https://rsms.me/">
|
||||
@@ -42,12 +44,11 @@
|
||||
@vite('resources/js/app.js')
|
||||
</head>
|
||||
|
||||
<body class="antialiased bg-stone-900 dark">
|
||||
<body class="antialiased bg-stone-900 dark scroll-smooth">
|
||||
<x-navbar/>
|
||||
<x-champions.grid_info :champion="$champion"/>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<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"
|
||||
src="{{ $skin->getSkinImageAttribute(true) }}"
|
||||
src="{{ $skin->getSkinImageAttribute() }}"
|
||||
alt="{{ $skin->skin_name }} Splash Art">
|
||||
<div class="flex flex-col items-center justify-center">
|
||||
<h2 class="mt-4 text-xl font-bold text-white">{{ $skin->skin_name }}</h2>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
@vite('resources/js/app.js')
|
||||
</head>
|
||||
|
||||
<body class="antialiased bg-stone-800 dark">
|
||||
<body class="antialiased bg-stone-800 dark scroll-smooth">
|
||||
<x-navbar/>
|
||||
<x-home.features/>
|
||||
@if ($upcomingSkins != [])
|
||||
|
||||
Reference in New Issue
Block a user