{{-- SEO Meta Tags Component --}}
{{-- 컨트롤러에서 생성된 seoData 배열을 사용하여 SEO 메타태그와 구조화 데이터 출력 --}}
@if(isset($seoData))
@push('head')
{{-- Article-specific meta tags (if article type) --}}
@if(isset($seoData['og_type']) && $seoData['og_type'] === 'article')
@if(!empty($seoData['article_author']))
@endif
@if(!empty($seoData['article_published_time']))
@endif
@if(!empty($seoData['article_modified_time']))
@endif
@if(!empty($seoData['article_section']))
@endif
@if(!empty($seoData['article_tag']))
@endif
@endif
{{-- JSON-LD Structured Data --}}
{{-- 브레드크럼 JSON-LD (NavigationComposer에서 생성) --}}
@if(isset($seoData['breadcrumb_json_ld']))
@endif
{{-- 컨텐츠 JSON-LD (컨트롤러에서 생성) --}}
@if(isset($seoData['json_ld']))
@endif
@endpush
@endif