feat: more work on completing switchover

This commit is contained in:
2023-12-10 15:10:32 -06:00
parent 9a7aa89362
commit 5c133cba56
113 changed files with 19495 additions and 9336 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 --}}