mycelium
BIN
static/images/hero.png
Normal file
After Width: | Height: | Size: 216 KiB |
BIN
static/images/hero2.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
static/images/hero3.png
Normal file
After Width: | Height: | Size: 168 KiB |
BIN
static/images/hero4.png
Normal file
After Width: | Height: | Size: 248 KiB |
BIN
static/images/hero5.png
Normal file
After Width: | Height: | Size: 229 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 20 KiB |
@ -1,6 +1,7 @@
|
|||||||
{% extends "_default/base.html" %}
|
{% extends "_default/base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
{% include "partials/hero/myhero.html" %}
|
||||||
{% include "partials/hero/hero1.html" %}
|
{% include "partials/hero/hero1.html" %}
|
||||||
{% include "partials/hero/hero2.html" %}
|
{% include "partials/hero/hero2.html" %}
|
||||||
{% include "partials/hero/hero3.html" %}
|
{% include "partials/hero/hero3.html" %}
|
||||||
|
27
templates/partials/hero/myhero.html
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<div class="relative fade-in lg:py-16">
|
||||||
|
<div class="mx-auto max-w-7xl lg:grid lg:grid-cols-12 lg:gap-x-8 lg:px-8">
|
||||||
|
<div class="px-6 pt-10 pb-24 sm:pb-32 lg:col-span-7 lg:px-0 lg:pt-40 lg:pb-48 xl:col-span-6">
|
||||||
|
<div class="mx-auto max-w-2xl lg:mx-0 lg:flex-auto">
|
||||||
|
<h1 class="text-4xl font-semibold tracking-tight text-white lg:text-6xl">
|
||||||
|
This is Hero6.html
|
||||||
|
</h1>
|
||||||
|
<h2 class="fade-in text-balance lg:text-5xl text-4xl font-normal tracking-tight text-white">This is smaller title h2</h2>
|
||||||
|
<p class="mt-8 text-lg font-light text-gray-50 lgl:text-xl">
|
||||||
|
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
|
||||||
|
Elit sunt amet fugiat veniam occaecat fugiat aliqua. Anim aute id magna aliqua ad ad non deserunt sunt.
|
||||||
|
</p>
|
||||||
|
<div class="mt-10 flex items-center gap-x-6">
|
||||||
|
<a href="#" class="rounded-2xl bg-white px-3.5 py-2.5 text-sm font-semibold text-black shadow-xs hover:bg-gray-200 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-200">
|
||||||
|
Get started
|
||||||
|
</a>
|
||||||
|
<a href="#" class="text-sm font-semibold text-white hover:text-gray-200">
|
||||||
|
Learn more <span aria-hidden="true">→</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="relative lg:col-span-5 lg:-mr-8 xl:absolute xl:inset-0 xl:left-1/2 xl:mr-0 ">
|
||||||
|
<img class="lg:py-16 aspect-1/1 w-full object-cover lg:absolute lg:inset-0 lg:aspect-auto" src="/images/hero5.png" alt="">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|