@extends('website.partials.app') @section('canonical', route('home')) @push('css') @endpush @section('content')

{{ $home['hero']['title'] }}

{{ $home['hero']['subtitle'] }}

{{-- Inline loading patti (same page) - replaces form while checking address --}} @include('website.partials.address-check-loader')
{{ $home['hero']['badge_1'] }} {{ $home['hero']['badge_2'] }} {{ $home['hero']['badge_3'] }}
{{ $home['steps']['pill'] }}

{{ $home['steps']['title'] }}

{{ $home['steps']['subtitle'] }}

@foreach($home['steps']['items'] as $idx => $step)
{{ $idx + 1 }}
{{ $step['title'] }}

{{ $step['description'] }}

@if($idx < count($home['steps']['items']) - 1)
@endif
@endforeach
{{--

Setup takes less than 5 minutes • No credit card required

--}}

{{ $home['pricing']['title'] }}

{{ $home['pricing']['subtitle'] }}

{{ $home['pricing']['note_line'] }}
{{ $home['pricing']['help_link_text'] }}

{{ $home['about']['title'] }}

{{ $home['about']['description'] }}

@foreach($home['about']['features'] as $fi => $feature) @php $iconWrap = ['red-bg', 'green-bg', 'teal-bg'][$fi] ?? 'red-bg'; $iconClass = ['fa-hand-holding-heart', 'fa-lock-open', 'fa-users'][$fi] ?? 'fa-hand-holding-heart'; @endphp
{{ $feature['title'] }}

{{ $feature['text'] }}

@endforeach
{{ $home['about']['image_alt'] }}
{{ $home['about']['stat_families_num'] }}
{{ $home['about']['stat_families_label'] }}
{{ $home['about']['stat_donation_amount'] }}
{{ $home['about']['stat_donation_label'] }}
{{ $home['coverage']['pill'] }}

{{ $home['coverage']['title'] }}

{{ $home['coverage']['subtitle'] }}

Sydney Map
{{ $home['coverage']['map_top_badge_title'] }}
{{ $home['coverage']['map_top_badge_subtitle'] }}
{{ $home['coverage']['map_stat_value'] }}
{{ $home['coverage']['map_stat_label'] }}
{{ $home['coverage']['coverage_header'] }}
@php $coverageAreas = $home['coverage']['areas'] ?? []; $coverageAreasCount = count($coverageAreas); @endphp @foreach($coverageAreas as $areaIdx => $area) @php if ($areaIdx === 0) { $areaIcon = 'website/assets/images/sydney.png'; } elseif ($areaIdx === $coverageAreasCount - 1) { $areaIcon = 'website/assets/images/add-more-icon.png'; } else { $areaIcon = 'website/assets/images/location-icon.png'; } @endphp

{{ $area['name'] ?? '' }}

@endforeach
{{ $home['coverage']['hot_title'] }}
{{ $home['coverage']['hot_subtitle'] }}
@php $coverageCardIcons = [ 'website/assets/images/wifi.png', 'website/assets/images/fast-install.png', 'website/assets/images/local-support.png', ]; @endphp @foreach($home['coverage']['cards'] as $idx => $card)

{{ $card['title'] }}

{{ $card['subtitle'] }}

@endforeach
{{ $home['contact']['pill'] }}

{{ $home['contact']['title'] }}

{{ $home['contact']['subtitle'] }}

{{ $home['contact']['form_title'] }}

{{ $home['contact']['form_sub'] }}

{{--
Plan enquiry
Technical support
Switch provider
General question
--}}
{{ $home['contact']['success_title'] }}

{{ $home['contact']['success_sub'] }}

{{ $home['faq']['pill'] }}

{{ $home['faq']['title'] }}

{{ $home['faq']['subtitle'] }}

@foreach($home['faq']['items'] as $index => $item) @php $collapseId = 'faq-collapse-'.$index; @endphp

@if($index === 0)
{{ $item['answer'] }}
@else {{ $item['answer'] }} @endif
@endforeach

{{ $home['cta']['title'] }}

{{ $home['cta']['subtitle'] }}

@push('css') @endpush @push('scripts') @endpush @endsection