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.

78 lines
2.0 KiB

1 month ago
  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>Marvel Laravel</title>
  7. <!-- Fonts -->
  8. <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap" rel="stylesheet">
  9. <!-- Styles --->
  10. <style>
  11. .welcome {
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: center;
  16. min-height: 100vh;
  17. }
  18. .welcome h1 {
  19. font-family: 'Raleway', sans-serif;
  20. font-size: 40px;
  21. font-weight: 300;
  22. color: #333333;
  23. margin-bottom: 30px;
  24. }
  25. .welcome ul {
  26. list-style: none;
  27. margin: 0;
  28. padding: 0;
  29. display: flex;
  30. justify-content: center;
  31. }
  32. .welcome ul li {
  33. margin-right: 30px;
  34. }
  35. .welcome ul li:last-child {
  36. margin-right: 0px;
  37. }
  38. .welcome ul li a {
  39. font-family: system-ui, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  40. font-size: 14px;
  41. color: #222222;
  42. text-decoration: none;
  43. transition: color 0.3s;
  44. text-transform: uppercase;
  45. }
  46. .welcome ul li a:hover {
  47. color: #009f7f;
  48. }
  49. .welcome ul li a:foucs {
  50. outline: none;
  51. }
  52. /* Put css here */
  53. </style>
  54. </head>
  55. <body class="welcome">
  56. <h1>Marvel Laravel</h1>
  57. <ul>
  58. <li><a href="https://chawkbazar-laravel-doc.vercel.app/" target="_blank">Documentation</a></li>
  59. <li><a href="http://redqsupport.ticksy.com/" target="_blank">Support</a></li>
  60. <li><a href="https://redq.io/" target="_blank">Contact</a></li>
  61. </ul>
  62. </body>
  63. </html>