app.blade.php 969 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" @class(['dark' => ($appearance ?? 'system') == 'dark'])>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="icon" href="/favicon.ico" sizes="any">
  7. <link rel="icon" href="/favicon.svg" type="image/svg+xml">
  8. <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  9. <link rel="preconnect" href="https://fonts.bunny.net">
  10. <link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
  11. @viteReactRefresh
  12. @vite(['resources/css/app.css', 'resources/js/app.tsx', "resources/js/pages/{$page['component']}.tsx"])
  13. <x-inertia::head>
  14. <title>{{ config('app.name', 'Laravel') }}</title>
  15. </x-inertia::head>
  16. </head>
  17. <body class="font-sans antialiased">
  18. <x-inertia::app />
  19. </body>
  20. </html>