@php
    $channel = core()->getCurrentChannel();
@endphp
@push ('meta')
    
    
    
@endPush
    
    
        {{  $channel->home_seo['meta_title'] ?? '' }}
    
    
    
    @foreach ($customizations as $customization)
        @php ($data = $customization->options) @endphp
        
        @switch ($customization->type)
            @case ($customization::IMAGE_CAROUSEL)
                
                
                @break
            @case ($customization::STATIC_CONTENT)
                
                @if (! empty($data['css']))
                    @push ('styles')
                        
                    @endpush
                @endif
                
                @if (! empty($data['html']))
                    {!! $data['html'] !!}
                @endif
                @break
            @case ($customization::CATEGORY_CAROUSEL)
                
                
                @break
            @case ($customization::PRODUCT_CAROUSEL)
                
                
                @break
        @endswitch
    @endforeach