56 lines
2.3 KiB
PHP
56 lines
2.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" @class(['dark' => ($appearance ?? 'system') == 'dark'])>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
|
|
|
|
<meta name="robots" content="index, follow">
|
|
<meta name="author" content="StreamVaultX.com">
|
|
<meta name="description" content="Finde deinen perfekten Bonus bei Bratanbonus.net. Erhalte exklusive Freispiele und Einzahlungsboni für die Community.">
|
|
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="{{ url()->current() }}">
|
|
<meta property="og:title" content="Bratanbonus.net | Deine Bonus-Seite">
|
|
<meta property="og:description" content="Erhalte Freispiele und Einzahlungsboni. Exklusiv für Bratanbonus Nutzer.">
|
|
<meta property="og:image" content="{{ asset('og-image.jpg') }}">
|
|
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:title" content="Bratanbonus.net | Deine Bonus-Seite">
|
|
<meta property="twitter:image" content="{{ asset('og-image.jpg') }}">
|
|
|
|
<link rel="canonical" href="{{ url()->current() }}">
|
|
<meta name="theme-color" content="#0a0a0a">
|
|
|
|
<script>
|
|
(function() {
|
|
const appearance = '{{ $appearance ?? "system" }}';
|
|
if (appearance === 'system') {
|
|
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
if (prefersDark) document.documentElement.classList.add('dark');
|
|
}
|
|
})();
|
|
</script>
|
|
|
|
<style>
|
|
html { background-color: oklch(1 0 0); }
|
|
html.dark { background-color: oklch(0.145 0 0); }
|
|
body { min-height: 100vh; }
|
|
</style>
|
|
|
|
<link rel="icon" href="/favicon.ico" sizes="any">
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600&display=swap" rel="stylesheet" />
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.ts'])
|
|
|
|
{{-- Das hier ist entscheidend: Es rendert die <Head> Inhalte aus deinen Vue-Komponenten --}}
|
|
@inertiaHead
|
|
</head>
|
|
<body class="font-sans antialiased selection:bg-purple-500 selection:text-white">
|
|
@inertia
|
|
</body>
|
|
</html>
|