mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
feat: add ad banners to various components
- Included horizontal ad banners in champions, home features, and skins sections. - Added vertical ad banners in emotes and icons lists for better visibility. - Adjusted layout for improved spacing around new ads.
This commit is contained in:
@@ -37,7 +37,8 @@
|
|||||||
<span class="font-bold">Popular Positions:</span>
|
<span class="font-bold">Popular Positions:</span>
|
||||||
@if (isset($champion->lanes) && isset($champion->lanes->roles))
|
@if (isset($champion->lanes) && isset($champion->lanes->roles))
|
||||||
@foreach ($champion->lanes->roles as $lane)
|
@foreach ($champion->lanes->roles as $lane)
|
||||||
<span class="inline-block lowercase capitalize-first">{{ $lane }} @svg(getRoleIconSvg($lane), 'w-5 h-5 inline-block')
|
<span class="inline-block lowercase capitalize-first">{{ $lane }}
|
||||||
|
@svg(getRoleIconSvg($lane), 'w-5 h-5 inline-block')
|
||||||
@if (!$loop->last)
|
@if (!$loop->last)
|
||||||
-
|
-
|
||||||
@endif
|
@endif
|
||||||
@@ -150,6 +151,7 @@
|
|||||||
<div class="p-4">
|
<div class="p-4">
|
||||||
<h4 class="text-center text-xl font-semibold text-neutral-100 uppercase mt-2.5 shadow-sm">
|
<h4 class="text-center text-xl font-semibold text-neutral-100 uppercase mt-2.5 shadow-sm">
|
||||||
{{ $champion->name }} Lore</h4>
|
{{ $champion->name }} Lore</h4>
|
||||||
|
<x-ads.in-article />
|
||||||
<p class="text-neutral-100 hyphens-auto text-base mt-2.5 leading-loose w-9/12 mx-auto"
|
<p class="text-neutral-100 hyphens-auto text-base mt-2.5 leading-loose w-9/12 mx-auto"
|
||||||
lang="en">
|
lang="en">
|
||||||
{{ $champion->lore }}
|
{{ $champion->lore }}
|
||||||
@@ -161,8 +163,6 @@
|
|||||||
</section>
|
</section>
|
||||||
@push('top_scripts')
|
@push('top_scripts')
|
||||||
@vite('resources/js/lane-filter.js')
|
@vite('resources/js/lane-filter.js')
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4505764048662657"
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
@endpush
|
@endpush
|
||||||
@push('bottom_scripts')
|
@push('bottom_scripts')
|
||||||
@include('popper::assets')
|
@include('popper::assets')
|
||||||
|
|||||||
@@ -15,6 +15,10 @@
|
|||||||
<x-champions.lane-selector class="text-center" />
|
<x-champions.lane-selector class="text-center" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="flex justify-center my-4">
|
||||||
|
<x-ads.horizontal-banner />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
||||||
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
||||||
@foreach ($champions as $key => $champion)
|
@foreach ($champions as $key => $champion)
|
||||||
|
|||||||
@@ -10,6 +10,11 @@
|
|||||||
<x-emotes.searchbar />
|
<x-emotes.searchbar />
|
||||||
|
|
||||||
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
||||||
|
|
||||||
|
<div class="hidden md:block md:mr-6">
|
||||||
|
<x-ads.vertical-banner />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="grid grid-cols-2 gap-6 md:grid-cols-3 lg:grid-cols-6">
|
<div class="grid grid-cols-2 gap-6 md:grid-cols-3 lg:grid-cols-6">
|
||||||
|
|
||||||
@foreach ($emotes as $key => $emote)
|
@foreach ($emotes as $key => $emote)
|
||||||
|
|||||||
@@ -85,5 +85,8 @@
|
|||||||
</p>
|
</p>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="w-full mt-12">
|
||||||
|
<x-ads.horizontal-banner />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
<x-icons.searchbar />
|
<x-icons.searchbar />
|
||||||
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
||||||
|
|
||||||
|
<div class="hidden md:block md:mr-6">
|
||||||
|
<x-ads.vertical-banner />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="grid grid-cols-2 gap-12 md:grid-cols-3 lg:grid-cols-6">
|
<div class="grid grid-cols-2 gap-12 md:grid-cols-3 lg:grid-cols-6">
|
||||||
|
|
||||||
@foreach ($icons as $key => $icon)
|
@foreach ($icons as $key => $icon)
|
||||||
|
|||||||
@@ -8,6 +8,10 @@
|
|||||||
Champion Skins</h1>
|
Champion Skins</h1>
|
||||||
<x-skins.searchbar />
|
<x-skins.searchbar />
|
||||||
|
|
||||||
|
<div class="flex justify-center my-4">
|
||||||
|
<x-ads.horizontal-banner />
|
||||||
|
</div>
|
||||||
|
|
||||||
@fragment('skin-list')
|
@fragment('skin-list')
|
||||||
<div id="skin-list">
|
<div id="skin-list">
|
||||||
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
<div class="container flex items-center justify-center p-4 mx-auto mt-3">
|
||||||
|
|||||||
Reference in New Issue
Block a user