36 lines
991 B
PHP
36 lines
991 B
PHP
@extends('web.themes.shella.layouts.app')
|
|
|
|
@section('content')
|
|
<main id="MainContent">
|
|
<!-- BEGIN content_for_index -->
|
|
|
|
{{-- Hero carousel --}}
|
|
@include('web.themes.shella.components.carousel.hero-carousel')
|
|
|
|
{{-- Brands carousel --}}
|
|
@include('web.themes.shella.components.carousel.brands-carousel')
|
|
|
|
{{-- Main categories box --}}
|
|
@include('web.themes.shella.components.banners.three-main-categories-box')
|
|
|
|
{{-- Homepage collections --}}
|
|
@include('web.themes.shella.pages.home.collections')
|
|
|
|
{{-- New products --}}
|
|
@include('web.themes.shella.components.banners.2-grid-banners')
|
|
|
|
{{-- Info icons --}}
|
|
@include('web.themes.shella.pages.home.info-icons')
|
|
|
|
{{-- Blogs --}}
|
|
{{-- @include('web.themes.shella.pages.home.blog') --}}
|
|
|
|
{{-- Gallery --}}
|
|
{{-- @include('web.themes.shella.pages.home.social-media-posts', [
|
|
'galleries' => $homepage_galleries
|
|
]) --}}
|
|
|
|
<!-- END content_for_index -->
|
|
</main>
|
|
@stop
|