@extends('layouts.dynamic-test')
@php
use Illuminate\Support\Str;
$name = $service['name'] ?? 'Website Development';
@endphp
@section('title', 'Dynamic Nav Test — ' . $name)
@section('meta_description', 'Hidden test page for Dynamic Navigation navigation on a service page.')
@section('page-content')
{{-- Overview (hero) --}}
{{ $service['categoryLabel'] ?? 'Services' }}
{{ $service['heroTitle'] ?? $name }}
@if(!empty($service['heroSubtitle']))
{{ $service['heroSubtitle'] }}
@endif
{{ Str::limit($service['heroDescription'] ?? '', 220) }}
{{-- Process --}}
@if(!empty($service['process']))
Process
How we build your website
A structured approach from architecture to launch — designed for clarity, speed, and conversion.
@foreach($service['process'] as $index => $step)
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}
{{ $step['title'] }}
{{ $step['description'] }}
@endforeach
@endif
{{-- Benefits --}}
@if(!empty($service['benefits']))
Benefits
Why choose Criazo for web development
@foreach($service['benefits'] as $benefit)
@endforeach
@endif
{{-- Outcomes --}}
@if(!empty($service['outcomes']))
Outcomes
What you can expect
@foreach($service['outcomes'] as $outcome)
{{ $outcome }}
@endforeach
@endif
{{-- FAQ --}}
@if(!empty($service['faqs']))
FAQ
Common questions
@foreach($service['faqs'] as $index => $faq)
{{ $faq['question'] }}
@endforeach
@endif
@endsection