mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
feat(components): update heading tags in blade templates
- Updated the heading tags in the `list_all.blade.php` files for champions, emotes, icons, and skins from `<h2>` to `<h1>`. - Also updated the heading tag in the `features.blade.php` file from `<h2>` to `<h1>`.
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
/** @var App\Models\ChampionRoles $roles */
|
||||
?>
|
||||
<section class="max-w-screen-xl mx-auto mt-12">
|
||||
<h2
|
||||
<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</h2>
|
||||
Champions</h1>
|
||||
<div class="flex justify-center items-center mx-auto max-w-screen-xl mt-2.5">
|
||||
<x-champions.lane-selector class="text-center"/>
|
||||
</div>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
/** @var App\Models\SummonerEmote $emote */ ?>
|
||||
|
||||
<section class="max-w-screen-xl mx-auto mt-12">
|
||||
<h2
|
||||
<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">
|
||||
Summoner Emotes</h2>
|
||||
Summoner Emotes</h1>
|
||||
|
||||
<x-emotes.searchbar/>
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<section class="text-white bg-stone-900">
|
||||
<div class="max-w-screen-xl px-4 py-8 mx-auto sm:py-12 sm:px-6 lg:py-16 lg:px-8">
|
||||
<div class="max-w-lg mx-auto text-center">
|
||||
<h2
|
||||
<h1
|
||||
class="text-3xl font-bold text-transparent uppercase sm:text-4xl bg-gradient-to-bl from-orange-300 to-orange-500 bg-clip-text">
|
||||
Welcome to Heimerdinger.LoL</h2>
|
||||
Welcome to Heimerdinger.LoL</h1>
|
||||
|
||||
<p class="mt-4 text-stone-300">
|
||||
<h2 class="mt-4 text-stone-300">
|
||||
Heimerdinger.LoL is a website dedicated to providing information about League of
|
||||
Legends. We provide information about the champions, skins, game assets, and more.
|
||||
</p>
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 gap-8 mt-8 md:grid-cols-2 lg:grid-cols-3">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
/** @var App\Models\SummonerIcon $icon */ ?>
|
||||
|
||||
<section class="max-w-screen-xl mx-auto mt-12">
|
||||
<h2
|
||||
<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">
|
||||
Summoner Icons</h2>
|
||||
Summoner Icons</h1>
|
||||
|
||||
<x-icons.searchbar/>
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
/** @var App\Models\ChampionSkin $skin */ ?>
|
||||
|
||||
<section class="max-w-screen-xl mx-auto mt-12">
|
||||
<h2
|
||||
<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">
|
||||
Champion Skins</h2>
|
||||
Champion Skins</h1>
|
||||
<x-skins.searchbar/>
|
||||
|
||||
<div class="flex justify-center items-center mx-auto max-w-screen-xl mt-2.5">
|
||||
|
||||
Reference in New Issue
Block a user