welcome.blade.php 609 B

1234567891011121314151617181920212223
  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>Welcome</title>
  7. <style>
  8. body {
  9. font-family: 'Nunito';
  10. }
  11. h2 {
  12. line-height: 120px;
  13. width: 100%;
  14. text-align: center;
  15. }
  16. </style>
  17. </head>
  18. <body class="antialiased">
  19. <div id="app">
  20. <h2>欢迎访问本站!</h2>
  21. </div>
  22. </body>
  23. </html>