@props([
'twitterHandle' => null,
'title' => null,
'metaDescription' => null,
'socialDescription' => null,
'keywords' => null,
'image' => null,
])
@if(isset($twitterHandle))
@endif
@if(isset($title))
{!! $title !!}
@endif
@if(isset($metaDescription) && trim($metaDescription) !== '')
@endif
@if(isset($socialDescription) && trim($socialDescription) !== '')
@elseif(isset($metaDescription) && trim($metaDescription) !== '')
@endif
@if(isset($image))
@endif
@if(isset($keywords))
@if(is_array($keywords) && count($keywords) > 0)
@elseif(is_string($keywords) && trim($keywords) !== '')
@endif
@endif