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:
2023-12-14 11:33:03 -06:00
committed by Paul Couture
parent 8eb4d14909
commit c4398c641e
342 changed files with 60893 additions and 2557 deletions

View 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>

View 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>

View 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>

View 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>