#Hero
A hero
is a layout used for creating splash screens. This is most commonly seen in the home page of websites.
A hero
is a layout used for creating splash screens. This is most commonly seen in the home page of websites.
The structure of a hero
is actually quite simple. It leaves a lot of flexibility for whatever content you want to add in the middle of it.
hero
- main container of the layout.hero-body
- body that holds your content.hero (padding shown for clarity)
hero-body
Below is a simple example of a hero
with some text.
<div class="hero bg-indigo-600">
<div class="hero-body">
<div class="content">
<h2 class="title white">I am the title.</h2>
<h5 class="subtitle text-gray-300">And I am the subtitle.</h5></div>
</div>
</div>
Apply the fullscreen
class on the hero
to make it stretch the full length and width of the screen. It does not do that here since it is embedded inside the docs page, so it will just fill its container.
<div class="hero fullscreen bg-yellow-200">
<div class="hero-body">
<div class="mx-auto">
<h1 class="title uppercase">Look!</h1>
<h3 class="subtitle text-gray-600">I am tall!</h3></div>
</div>
</div>
Of course, you can always stick an image into the hero
with the hero-img
class and add parallax with the parallax-img
class.
<div id="splash-img" class="hero fullscreen hero-img parallax-img">
<div class="hero-body">
<div class="content u-text-center">
<h1 class="uppercase white title">Easily create beautiful splash screens</h1>
<h3 class="uppercase white sub-title faded">Only 6 lines needed and no additional CSS</h3></div>
</div>
</div>