guest-home.blade.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>Leadership Health</title>
  7. <!-- Fonts -->
  8. <link href="https://fonts.googleapis.com/css?family=Nunito:200,600,700" rel="stylesheet">
  9. {{-- Bootstrap --}}
  10. <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  11. <link rel="stylesheet" href="/css/bootstrap.min.css">
  12. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  13. <!-- Styles for patient home -->
  14. <style>
  15. body {
  16. background-image: url(/images/patient-home-banner.jpg);
  17. background-size: 100% auto;
  18. background-position: top center;
  19. background-attachment: fixed;
  20. }
  21. @media (max-aspect-ratio: 16/11) {
  22. body {
  23. background-size: auto 100%;
  24. }
  25. }
  26. </style>
  27. <link rel="stylesheet" href="/css/meeting.css">
  28. </head>
  29. <body class="px-3 px-md-5 py-5">
  30. @yield('content')
  31. </body>
  32. </html>