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,26 @@
<div class="col-xxl-4 col-lg-6 col-md-6 mb-6">
<div class="top-seller-style-two d-flex-between">
<div class="d-flex-center">
<div class="thumb-wrapper">
<a href="author-profile.html" class="thumb">
<img src="{{ Vite::asset($leaderboardArtist->artist->avatar ?? 'resources/img/default_avatars/default_avatar_male.svg') }}" alt="{{ $leaderboardArtist->artist->name }}"
title="{{ $leaderboardArtist->artist->name }}">
</a>
</div>
{{-- End .thumb-wrapper --}}
{{-- End .thumb --}}
<div class="content">
<h4 class="title pb-1"><a href="author-profile.html">{{ $leaderboardArtist->artist->name }}</a></h4>
<span class="price">Chosen {{ $leaderboardArtist->artworkCount }} {{ Str::plural('Time', $leaderboardArtist->artworkCount) }}</span>
</div>
{{-- End .content --}}
</div>
{{-- End .d-flex-center --}}
<a href="author-profile.html" class="items-number d-flex-center flex-column">
<strong class="pb-1">{{ $leaderboardArtist->position }}<sup>{{ numberSuffix($leaderboardArtist->position) }}</sup></strong>
<span>Place</span>
</a>
</div>
{{-- End .top-seller-style-two --}}
</div>
{{-- End .col --}}

View File

@@ -0,0 +1,23 @@
{{-- Start Top Seller --}}
<section class="section-bg-separation-2 ptb-120">
<div class="container">
<div class="d-flex-between">
<div class="section-title">
<span class="subtitle">The Artists</span>
<h2>Past Year Leaderboard</h2>
</div>
{{-- End .section-title --}}
<div class="text-large">
<a href="#">View Leaderboards</a>
</div>
</div>
{{-- End .d-flex-between --}}
<div class="row">
@foreach($leaderboard as $leaderboardArtist)
@include('home.leaderboard.card')
@endforeach
</div>
</div>
{{-- End container --}}
</section>
{{-- End section --}}