@php
$info = [
'site-inactive' => [
'badge' => 'Inactive',
'title' => 'This site is inactive',
'desc' => "{$siteName} is currently disabled and not accessible to visitors.",
'icon' => '',
],
'pages-inactive' => [
'badge' => 'Inactive',
'title' => 'All pages are inactive',
'desc' => "{$siteName} has pages, but none of them are active yet. Enable a page to make it visible.",
'icon' => '',
],
'no-pages' => [
'badge' => 'No pages',
'title' => 'This site is empty',
'desc' => "No pages have been created for {$siteName} yet. Once a page is added, it will appear here.",
'icon' => '',
],
][$state] ?? [];
@endphp