welcome.blade.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>TTS</title>
  7. <!-- Fonts -->
  8. <link rel="preconnect" href="https://fonts.bunny.net">
  9. <link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" />
  10. <!-- Styles -->
  11. <link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
  12. @vite(['resources/css/app.css', 'resources/js/app.js'])
  13. </head>
  14. <body class="antialiased font-sans">
  15. <div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
  16. {{-- <img id="background" class="absolute -left-20 top-0 max-w-[877px]"
  17. src="https://laravel.com/assets/img/welcome/background.svg" /> --}}
  18. <div
  19. class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
  20. <div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">
  21. <header class="grid grid-cols-2 items-center gap-2 py-10 lg:grid-cols-3">
  22. <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>
  23. </header>
  24. <main class="mt-6">
  25. <div class="grid gap-6 lg:grid-cols-2 lg:gap-8">
  26. <livewire:gen-message />
  27. <livewire:play-message />
  28. </div>
  29. </main>
  30. <footer class="py-16 text-center text-sm text-black dark:text-white/70">
  31. Easytelecoms 2024.
  32. </footer>
  33. </div>
  34. </div>
  35. </div>
  36. <script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js"></script>
  37. </body>
  38. </html>