@php $gameName = (string) $game; $gameSlug = rawurlencode($gameName); $isTs1 = $gameName === 'Twelve Sky 1'; $gameKey = $isTs1 ? 'ts1' : 'ts2'; $seoTitle = $gameName . ' • Vortex Sky X Wiki'; $seoDescription = 'Explore ' . $gameName . ' database: factions, maps, items, monsters, and skills.'; $slides = [ [ 'label' => 'Factions', 'href' => '/wiki/' . $gameSlug . '/factions', 'img' => '/images/home/' . $gameKey . '/factions.jpg', 'alt' => $gameName . ' Factions', ], [ 'label' => 'Maps', 'href' => '/wiki/' . $gameSlug . '/maps', 'img' => '/images/home/' . $gameKey . '/maps.jpg', 'alt' => $gameName . ' Maps', ], [ 'label' => 'Items', 'href' => '/wiki/' . $gameSlug . '/items', 'img' => '/images/home/' . $gameKey . '/items.jpg', 'alt' => $gameName . ' Items', ], [ 'label' => 'Monsters', 'href' => '/wiki/' . $gameSlug . '/monsters', 'img' => '/images/home/' . $gameKey . '/monsters.jpg', 'alt' => $gameName . ' Monsters', ], [ 'label' => 'Skills', 'href' => '/wiki/' . $gameSlug . '/skills', 'img' => '/images/home/' . $gameKey . '/skills.jpg', 'alt' => $gameName . ' Skills', ], ]; @endphp