@extends('layouts.site') @section('content')
imageUrl()) style="background-image: url('{{ $sections['hero']->imageUrl() }}');" @endif> @include('partials.navbar')
@php $hero = $sections['hero'] ?? null; @endphp

{{ $hero->title ?? 'WELCOME TO DGFORM' }}

{{ $hero?->subtitle }}

@php $services = $sections['services'] ?? null; @endphp

{{ $services->title ?? 'ABOUT US' }}


{{ $services?->subtitle }}

@if ($services?->content)
{!! $services->content !!}
@endif
@foreach ($services->items ?? [] as $item)
@if ($item->icon) @endif
{{ $item->title }}
{!! $item->description !!}
@endforeach
@php $visimisi = $sections['visimisi'] ?? null; @endphp

{{ $visimisi->title ?? 'Visi & Misi' }}


{{ __('Vision') }}

{!! $visimisi?->content !!}

{{ __('Mission') }}

    @foreach ($visimisi->items ?? [] as $item)
  • {{ $item->title }}
  • @endforeach
@php $whatwedo = $sections['whatwedo'] ?? null; @endphp

{{ $whatwedo->title ?? 'What We Do' }}


{{ $whatwedo?->subtitle }}

@foreach ($whatwedo->items ?? [] as $item)

{{ $item->title }}

{!! $item->description !!}
@endforeach
@php $features = $sections['features'] ?? null; @endphp

{{ $features->title ?? 'OUR SERVICES' }}


{{ $features?->subtitle }}

@foreach ($features->items ?? [] as $item)
@if ($item->link)

{{ $item->title }}

{!! $item->description !!}
@else

{{ $item->title }}

{!! $item->description !!}
@endif
@endforeach
@php $partner = $sections['partner'] ?? null; @endphp

{{ $partner->title ?? 'OUR PARTNER' }}


{{ $partner?->subtitle }}

@foreach ([1, 2] as $duplicate) @foreach ($partner->items ?? [] as $item)
{{ $item->title }}
@endforeach @endforeach
@php $contactCta = $sections['contact_cta'] ?? null; @endphp

{{ $contactCta->title ?? 'Ready to Work With Us?' }}

{{ $contactCta?->subtitle }}

{{ $contactCta->button_text ?? 'Contact Us' }}
@endsection