My SMM panel
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.
 
 
 
 
 
 

64 lines
1.8 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. {{-- This section may need to be overwritten in descendants --}}
  4. @section('head-metas')
  5. <meta charset='utf-8'>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <link rel="stylesheet" href="">
  8. <link rel="shortcut icon" type="image/jpg"
  9. href={{ Vite::asset('resources/images/arrow-up.svg') }} />
  10. @vite(['resources/scss/main.scss'])
  11. @if (config('app.env') == 'production')
  12. <!-- Global site tag (gtag.js) - Google Analytics -->
  13. <script async src="https://www.googletagmanager.com/gtag/js?id=G-LH36E9P3P5"></script>
  14. <script>
  15. window.dataLayer = window.dataLayer || [];
  16. function gtag(){dataLayer.push(arguments);}
  17. gtag('js', new Date());
  18. gtag('config', 'G-LH36E9P3P5');
  19. </script>
  20. <!-- Global site tag (gtag.js) - Google Analytics -->
  21. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-200591850-1">
  22. </script>
  23. <script>
  24. window.dataLayer = window.dataLayer || [];
  25. function gtag(){dataLayer.push(arguments);}
  26. gtag('js', new Date());
  27. gtag('config', 'UA-200591850-1');
  28. </script>
  29. @endif
  30. @show
  31. <title>Trendplays - @yield('title')</title>
  32. </head>
  33. <body>
  34. <nav class="navigator @yield('heading-style')" role="navigation">
  35. <a id='logo' href='/'>
  36. <h1>Trendplays</h1>
  37. <img src={{ Vite::asset('resources/images/arrow-up.svg') }}
  38. height="30px" alt="">
  39. </a>
  40. @yield('login-form')
  41. <span class="icon-bar"></span>
  42. </nav>
  43. @yield('content')
  44. @section('footer')
  45. <footer class='footer text-center'>
  46. <div class='foot-links'>
  47. <a href="/terms-and-policy">Terms & Policy</a>
  48. <a href="mail:support@trendplays.com">Help</a>
  49. @auth <a href="/logout">Logout</a> @endauth
  50. </div>
  51. <small>©Copyright 2025 Trendplays Network, Inc.</small>
  52. </footer>
  53. @show
  54. @section('scripts')
  55. @show
  56. </body>