Wedding Invitation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

digital-card.blade.php 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" data-theme="light">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
  6. <meta name="color-scheme" content="light only">
  7. <title>{{config('app.name')}}</title>
  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. <link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css" rel="stylesheet" type="text/css" />
  11. <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
  12. <meta name="csrf-token" content="{{ csrf_token() }}">
  13. @vite(['resources/css/app.css','resources/js/app.js'])
  14. </head>
  15. <body class="antialiased font-serif relative" style="overflow-x: hidden">
  16. <!-- Gimmicks -->
  17. <div id="loading" class="fixed flex bg-cyan-200" style="top:0;left:0;z-index:9999;width:100%;height:100vh">
  18. <span class="loader mx-auto my-auto"></span>
  19. </div>
  20. <div role="alert" class="alert alert-info hidden z-40 fixed w-1/2 top-3 right-3">
  21. <span></span>
  22. </div>
  23. <audio id="player" loop>
  24. <source src="{{ asset('assets/background-musicv2.mp3') }}" type="audio/mp3">
  25. </audio>
  26. <div class="parent absolute h-screen w-screen" style="z-index: 999">
  27. @include('components.front-cover')
  28. </div>
  29. <div class="parent absolute h-screen w-screen dummy-cover" style="z-index: 999">
  30. @include('components.front-cover-intro-dummy')
  31. </div>
  32. <div class="petal-overlay hidden" id="petalOverlay">
  33. <img src="{{ asset('assets/petal.gif') }}" alt="Falling Petals">
  34. </div>
  35. <div class="section bg-babyblue min-h-screen flex justify-center items-center pb-20">
  36. @include('components.main-event')
  37. </div>
  38. <div class="section bg-babyblue min-h-screen flex justify-center pb-5">
  39. @include('components.event-info')
  40. </div>
  41. <div class="section bg-babyblue flex justify-center pb-5">
  42. @include('components.countdown')
  43. </div>
  44. <div class="section bg-babyblue flex justify-center">
  45. @include('components.guestbook')
  46. </div>
  47. <div class="section bg-babyblue flex justify-center pb-24">
  48. @include('components.prayer')
  49. </div>
  50. @include('components.navbar')
  51. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  52. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" defer/>
  53. <script src="https://unpkg.com/aos@2.3.1/dist/aos.js" defer></script>
  54. @stack('script')
  55. </body>
  56. </html>