feat/factory_creation (#1)
Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #1.
This commit is contained in:
25
site/resources/views/home/hero/banner-left.blade.php
Normal file
25
site/resources/views/home/hero/banner-left.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<div class="banner-content">
|
||||
<h1 class="mb-5 title" data-aos="fade-up">Producing Album Art<br>
|
||||
<span>Live Since 2010</span>
|
||||
</h1>
|
||||
<p data-aos="fade-up" data-aos-delay="100">
|
||||
A community collaboration producing the best podcast album art in the universe!<br>
|
||||
Once discussed on <em>The Joe Rogan Experience</em>, sadly,<br>
|
||||
Young Jamie was not asked to pull this up.
|
||||
</p>
|
||||
<div class="group-btn mt-8" data-aos="fade-up" data-aos-delay="200">
|
||||
<a href="/artworks" class="btn btn-gradient">
|
||||
<span><i class="ri-rocket-line"></i>Explore</span>
|
||||
</a>
|
||||
@if (Auth::user())
|
||||
<a href="/create-artwork" class="btn btn-outline">
|
||||
<span><i class="ri-edit-line"></i> Create</span>
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
<div class="counter-wrapper counter-wrapper-style-two">
|
||||
@foreach ($headerCounters as $headerCounterLabel => $headerCounterCount)
|
||||
@include('home.hero.counter')
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
7
site/resources/views/home/hero/counter.blade.php
Normal file
7
site/resources/views/home/hero/counter.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<div class="counter-style-1" data-aos="fade-up" data-aos-delay="250">
|
||||
<div class="d-flex-center">
|
||||
<div class="number counter-item-active">{{ $headerCounterCount['number'] }}</div>
|
||||
<div class="count-kilo">{{ $headerCounterCount['unit'] }} <span>+</span></div>
|
||||
</div>
|
||||
<div class="counter-title">{{ $headerCounterLabel }}</div>
|
||||
</div>
|
||||
16
site/resources/views/home/hero/hero.blade.php
Normal file
16
site/resources/views/home/hero/hero.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<section class="hero-banner-style bg-5 bg-image top-section-gap hero-banner-style-4">
|
||||
<div class="hero-banner_inner">
|
||||
<div class="container-fluid">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-xl-7 col-lg-6 col-md-12">
|
||||
@include('home.hero.banner-left')
|
||||
</div>
|
||||
<div class="col-xl-5 col-lg-6 col-md-12">
|
||||
@include('home.hero.slider.slider')
|
||||
</div>
|
||||
{{-- End .col --}}
|
||||
</div>
|
||||
</div>
|
||||
{{-- End .container --}}
|
||||
</div>
|
||||
</section>
|
||||
12
site/resources/views/home/hero/slider/slider.blade.php
Normal file
12
site/resources/views/home/hero/slider/slider.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="slider slider-activation-banner-4 slick-gutter-15 slick-pagination-50">
|
||||
@foreach($recentEpisodes as $recentEpisode)
|
||||
@if ($recentEpisode->artwork)
|
||||
@php
|
||||
$thisArtwork = $recentEpisode->artwork;
|
||||
$thisEpisode = $recentEpisode;
|
||||
$thisPodcast = $recentEpisode->podcast;
|
||||
@endphp
|
||||
@include('artworks.card')
|
||||
@endif
|
||||
@endforeach
|
||||
</div>
|
||||
Reference in New Issue
Block a user