This commit is contained in:
2025-09-25 03:03:31 +05:00
commit ae480cf2f6
2768 changed files with 1485826 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<div id="theme-section-1537197792650" class="theme-section">
<div data-section-id="1537197792650" data-section-type="home-builder" class="container" style="max-width: 90%;">
<div class="overflow-x-hidden">
<div class="row mt-0 mb-40 justify-content-start align-items-start">
@foreach($channels as $channel)
<div class="col-12 col-md-4 mt-0 mb-10 mb-sm-15 mb-md-15 mb-lg-15 mb-xl-15">
<div class="promobox promobox--type-05 image-animation-trigger position-relative d-flex flex-column align-items-center text-center">
<a href="{{ $channel->productsPage() }}" class="w-100">
<div class="image-animation image-animation--from-default image-animation--to-center image-animation--to-opacity">
<div class="rimage" style="padding-top:72.97297297297297%;">
<img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="
class="rimage__img rimage__img--fade-in lazyload"
data-master="{{ $channel->image() }}"
data-aspect-ratio="1.3703703703703705"
data-srcset="{{ $channel->image() }} 1x, {{ $channel->image() }} 2x"
data-scale-perspective="1.1"
alt="">
</div>
</div>
</a>
<div class="promobox__plate promobox__plate--hovered position-absolute d-flex flex-column flex-center px-10 py-7 pointer-events-none">
<a href="a" class="pointer-events-all">
<p class="promobox__text-line-01 h5 position-relative m-0">{{ $channel->name }}</p>
</a>
</div>
<div class="promobox__content-scale position-absolute d-none d-lg-flex flex-column flex-center px-15 py-7 pointer-events-none">
<a href="{{ $channel->productsPage() }}" class="pointer-events-all">
<p class="promobox__text-line-01 h5 position-relative m-0">{{ __('View products') }}</p>
</a>
</div>
</div>
</div>
@endforeach
</div>
</div>
</div>
<script>
Loader.require({
type: "script",
name: "home_builder"
});
</script>
</div>

View File

@@ -0,0 +1,31 @@
@extends('web.themes.shella.layouts.app')
@section('content')
<main id="MainContent">
{{-- Hero carousel --}}
{{-- @include('web.themes.shella.components.carousel.hero-carousel') --}}
<div class="breadcrumbs mt-15">
<div class="container">
<ul class="list-unstyled d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<li style="font-size: 1.6em;"><a href="/">{{ __('Home') }}</a></li>
<li style="font-size: 1.6em;"><span class="text-capitizalize">{{ __('Sellers') }}</span></li>
</ul>
</div>
</div>
<div class="container">
<h2 class="text-center mt-5">
{{ __('Sellers') }}
</h2>
</div>
{{-- Entrepreneru --}}
@include('web.themes.shella.pages.entrepreneurs.home.entrepreneur-box', [
'channels' => $channels
])
{{-- Info icons --}}
@include('web.themes.shella.pages.home.info-icons')
</main>
@stop

View File

@@ -0,0 +1,11 @@
@extends('web.themes.shella.layouts.app', [
'body_class' => 'template-collection theme-css-animate'
])
@section('content')
<main id="MainContent">
@include('web.themes.shella.components.products.collection.grid-collection', [
'resource' => $resource
])
</main>
@stop