byos_laravel/resources/views/welcome.blade.php
Benjamin Nussbaum 01655b413e initial commit
2025-02-12 22:15:57 +01:00

69 lines
3.5 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet"/>
<!-- Styles -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="antialiased font-sans">
<div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
<div
class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
<div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">
<header class="grid grid-cols-2 items-center gap-2 py-10 lg:grid-cols-3">
<div class="flex lg:justify-center lg:col-start-2">
<svg class="h-12 w-auto" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_870_1047)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.02194 2.11328L15.8863 5.07445L14.4259 8.98481L6.56152 6.02364L8.02194 2.11328Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M20.6315 1.14647L23.2291 9.16642L19.2738 10.458L16.6761 2.43807L20.6315 1.14647Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M29.2441 10.4452L24.619 17.4848L21.1471 15.185L25.7723 8.14549L29.2441 10.4452Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M27.3739 23.0034L19.0088 23.7616L18.6349 19.6023L27 18.8441L27.3739 23.0034Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M16.4296 29.3638L10.6236 23.2697L13.6292 20.3828L19.4351 26.4769L16.4296 29.3638Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4.65232 24.7423L5.77753 16.3849L9.89932 16.9443L8.77411 25.3017L4.65232 24.7423Z"
fill="#F8654B"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M0.910558 12.6074L8.11961 8.28L10.2539 11.8645L3.04481 16.192L0.910558 12.6074Z"
fill="#F8654B"/>
</g>
<defs>
<clipPath id="clip0_870_1047">
<rect width="30" height="30" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
@if (Route::has('login'))
<livewire:welcome.navigation/>
@endif
</header>
<footer class="py-16 text-center text-sm text-black dark:text-white/70">
@if(app()->environment('local'))
Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
@endif
</footer>
</div>
</div>
</div>
</body>
</html>