12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>TTS</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 -->
- <link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
- @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">
- {{-- <img id="background" class="absolute -left-20 top-0 max-w-[877px]"
- src="https://laravel.com/assets/img/welcome/background.svg" /> --}}
- <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">
- <h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white">Définissez vos jours de fermeture :</h1>
- </header>
- <main class="mt-6">
- <div class="grid gap-6 lg:grid-cols-2 lg:gap-8">
- <livewire:gen-message />
- <livewire:play-message />
- </div>
- </main>
- <footer class="py-16 text-center text-sm text-black dark:text-white/70">
- Easytelecoms 2024.
- </footer>
- </div>
- </div>
- </div>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js"></script>
- </body>
- </html>
|