@php // Theme setting $theme = $_COOKIE['theme'] ?? 'dark'; // SEO defaults $siteName = 'Nexxuz'; $defaultDescription = 'Get the best IT services with Nexxuz. Expert PC repair, website creation, and maintenance for optimal performance. Contact us now!'; $seoTitle = $metaTitle ?? (isset($title) ? $siteName . ' | ' . $title : $siteName); $seoDescription = $metaDescription ?? $defaultDescription; $canonicalUrl = $canonicalUrl ?? url()->current(); $canonicalUrl = \Illuminate\Support\Str::startsWith($canonicalUrl, ['http://', 'https://']) ? $canonicalUrl : url($canonicalUrl); $defaultRobots = request()->is('dashboard*') || request()->is('login') || request()->is('password/*') ? 'noindex, nofollow' : 'index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large'; $robotsContent = $robotsContent ?? $defaultRobots; $ogType = $ogType ?? 'website'; $ogImage = $ogImage ?? asset('Nexxuz%20-%20Logo.png'); $ogImage = \Illuminate\Support\Str::startsWith($ogImage, ['http://', 'https://']) ? $ogImage : asset($ogImage); $ogImageAlt = $ogImageAlt ?? $siteName . ' logo'; $twitterSite = $twitterSite ?? '@NexxuzCo'; $twitterCreator = $twitterCreator ?? '@NexxuzCo'; @endphp