@php
$socialLinks = $page_init['contact']['social'] ?? [];
$headerSocialOrder = ['line', 'facebook', 'youtube', 'twitter', 'instagram', 'tiktok'];
$headerSocialHover = [
'line' => 'hover:bg-[#00B900] hover:text-white',
'facebook' => 'hover:bg-[#1877F2] hover:text-white',
'youtube' => 'hover:bg-[#FF0000] hover:text-white',
'twitter' => 'hover:bg-[var(--foreground)] hover:text-white',
'instagram' => 'hover:bg-gradient-to-br hover:from-[#f09433] hover:via-[#e6683c] hover:to-[#dc2743] hover:text-white',
'tiktok' => 'hover:bg-[#000000] hover:text-white',
];
$headerSocialAria = [
'line' => 'Line',
'facebook' => 'Facebook',
'youtube' => 'YouTube',
'twitter' => 'X (Twitter)',
'instagram' => 'Instagram',
'tiktok' => 'TikTok',
];
@endphp
@foreach ($headerSocialOrder as $network)
@php
$href = trim((string) (is_array($socialLinks[$network] ?? null) ? $socialLinks[$network]['url'] ?? '' : ''));
@endphp
@continue($href === '')
@endforeach