@extends('layouts.app')
@section('content')
@include('partials.hero')
@include('partials.quick-links')
@if (!have_posts())
{{ __('Sorry, no results were found.', 'sage') }}
{!! get_search_form(false) !!}
@endif
@if( have_rows('page_components') )
@while ( have_rows('page_components') )
@php the_row() @endphp
@include('components.'.get_row_layout())
@endwhile
@endif
{!! get_the_posts_navigation() !!}
@endsection