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.

24 lines
840 B

  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 inertia>{{ config('app.name', 'Laravel') }}</title>
  7. <!-- Fonts -->
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
  11. <!-- Scripts -->
  12. @routes
  13. @viteReactRefresh
  14. @vite(['resources/js/app.tsx', "resources/js/Pages/{$page['component']}.tsx"])
  15. @inertiaHead
  16. </head>
  17. <body class="font-sans antialiased">
  18. @inertia
  19. </body>
  20. </html>