welcome.blade.php 829 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{{config('app.name2')}}</title>
  7. <style>
  8. * { margin: 0; padding: 0; }
  9. html, body {
  10. height: 100%;
  11. width: 100%;
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. background: #fff;
  16. }
  17. h1 {
  18. font-size: 64px;
  19. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  20. color: #333;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <h1>
  26. {{config('app.name2')}}
  27. </h1>
  28. </body>
  29. </html>