@props([
'titleBefore' => null,
'highlight' => null,
'titleAfter' => null,
'subtitle' => null,
'ctaLabel' => null,
'ctaUrl' => '#company-history-timeline',
'illustration' => null,
])
@php
$titleBefore = $titleBefore ?? __('company_history.hero_title_before');
$highlight = $highlight ?? __('company_history.hero_highlight');
$titleAfter = $titleAfter ?? __('company_history.hero_title_after');
$subtitle = $subtitle ?? __('company_history.hero_subtitle');
$ctaLabel = $ctaLabel ?? __('company_history.hero_cta');
$illustration = $illustration ?? asset('assets/img/illustrations/truncgil-overview-timeline.png');
@endphp
@include('components.company-history.fonts')
{{ $titleBefore }}@if($highlight) {{ $highlight }}@endif{{ $titleAfter }}
@if($ctaLabel)
{{ $ctaLabel }}
@endif
@once
@push('styles')
@endpush
@endonce