chore: gads

This commit is contained in:
Rico van Zelst
2024-08-16 01:37:54 +02:00
parent 9f34be6c17
commit 3dc50eee2d
5 changed files with 64 additions and 15 deletions

View File

@@ -1,10 +1,17 @@
@extends('layouts.app')
@section('title', 'Heimerdinger • Assets')
@section('description', 'Explore game assets on Heimerdinger.LoL. Find detailed information on all icons and emotes
available in League of Legends!')
@section('description',
'Explore game assets on Heimerdinger.LoL. Find detailed information on all icons and emotes
available in League of Legends!')
@push('top_scripts')
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4505764048662657"
crossorigin="anonymous"></script>
@endpush
@section('content')
<h1
class="text-3xl font-bold text-center text-transparent uppercase mt-7 sm:text-4xl bg-gradient-to-bl from-orange-300 to-orange-500 bg-clip-text">
Assets</h1>
@@ -12,10 +19,12 @@
class="text-lg font-bold text-center text-transparent uppercase bg-gradient-to-bl from-orange-300 to-orange-500 bg-clip-text">
LoL Icons & Emotes</h2>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4505764048662657" data-ad-slot="1526464654"
data-ad-format="auto" data-full-width-responsive="true"></ins>
<div class="container flex items-center justify-center flex-grow p-4 mx-auto mt-3">
<div class="items-center justify-center text-center align-middle">
<img class="items-center mx-auto" src="{{ asset('img/heimerdinger-emote.webp') }}"
alt="Heimerdinger Emote">
<img class="items-center mx-auto" src="{{ asset('img/heimerdinger-emote.webp') }}" alt="Heimerdinger Emote">
<p class="text-gray-100">Tired of endless browsing to find that one icon or emote you love?</p>
<p class="text-gray-100">We got you covered! Search through <span
class="font-medium underline decoration-orange-500/50">all</span>
@@ -25,10 +34,19 @@
<p class="mb-3 text-gray-200">Click on the asset category you'd like to view below to get started!</p>
<div class="flex justify-center space-x-4">
<a href="{{ route('assets.icons.index') }}"
class="px-4 py-2 font-bold text-white bg-orange-500 rounded hover:bg-orange-600">Icons</a>
class="px-4 py-2 font-bold text-white bg-orange-500 rounded hover:bg-orange-600">Icons</a>
<a href="{{ route('assets.emotes.index') }}"
class="px-4 py-2 font-bold text-white bg-orange-500 rounded hover:bg-orange-600">Emotes</a>
class="px-4 py-2 font-bold text-white bg-orange-500 rounded hover:bg-orange-600">Emotes</a>
</div>
</div>
</div>
@endsection
@push('bottom_scripts')
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
@endpush

View File

@@ -1,17 +1,23 @@
@extends('layouts.app')
@section('title', 'Heimerdinger • Champions')
@section('description', 'Explore the world of League of Legends champions on Heimerdinger.LoL. Find detailed
information on top picks like Heimerdinger, Ezreal, Jinx and Lux. Dive into the action now!')
@section('description',
'Explore the world of League of Legends champions on Heimerdinger.LoL. Find detailed
information on top picks like Heimerdinger, Ezreal, Jinx and Lux. Dive into the action now!')
@push('top_scripts')
@vite('resources/js/lane-filter.js')
@endpush
@push('top_scripts')
@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
@section('content')
<x-champions.list_all :champions="$champions" :roles="$roles"/>
<x-champions.list_all :champions="$champions" :roles="$roles" />
@endsection
@push('bottom_scripts')
@include('popper::assets')
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
@endpush

View File

@@ -7,6 +7,12 @@
<h1
class="text-3xl font-bold text-center text-transparent uppercase sm:text-4xl bg-gradient-to-bl from-orange-300 to-orange-500 bg-clip-text">
Champions</h1>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4505764048662657"
data-ad-slot="7031271888"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<div class="flex justify-center items-center mx-auto max-w-screen-xl mt-2.5">
<x-champions.lane-selector class="text-center" />
</div>

View File

@@ -8,6 +8,13 @@
Champion Skins</h1>
<x-skins.searchbar />
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4505764048662657"
data-ad-slot="4300903438"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
@fragment('skin-list')
<div id="skin-list">
<div class="container flex items-center justify-center p-4 mx-auto mt-3">

View File

@@ -1,9 +1,21 @@
@extends('layouts.app')
@section('title', 'Heimerdinger • Skins')
@section('description', 'Explore all champion skins on Heimerdinger.LoL. Find detailed information on popular skins
such as Dark Cosmic Jhin, HEARTSTEEL Ezreal, PROJECT: Vayne and more!')
@section('description',
'Explore all champion skins on Heimerdinger.LoL. Find detailed information on popular skins
such as Dark Cosmic Jhin, HEARTSTEEL Ezreal, PROJECT: Vayne and more!')
@push('top_scripts')
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4505764048662657"
crossorigin="anonymous"></script>
@endpush
@section('content')
<x-skins.paginatedlist :skins="$skins" :rarity-color="$rarityColor"/>
<x-skins.paginatedlist :skins="$skins" :rarity-color="$rarityColor" />
@endsection
@push('bottom_scripts')
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
@endpush