2025-12-30 15:03:19 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
2026-02-02 11:03:09 +08:00
|
|
|
<title inertia>{{ $appName ?? config('app.name', 'Star ERP') }}</title>
|
2025-12-30 15:03:19 +08:00
|
|
|
|
|
|
|
|
<!-- Fonts -->
|
2026-01-29 16:28:34 +08:00
|
|
|
<link rel="icon" type="image/png" href="{{ $branding['logo_url'] ?? '/favicon.png' }}">
|
2025-12-30 15:03:19 +08:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap" rel="stylesheet">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
|
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
|
|
|
|
|
|
|
|
|
<!-- Scripts -->
|
|
|
|
|
@routes
|
|
|
|
|
@viteReactRefresh
|
|
|
|
|
@vite(['resources/js/app.tsx', "resources/js/Pages/{$page['component']}.tsx"])
|
|
|
|
|
@inertiaHead
|
2026-01-28 13:58:54 +08:00
|
|
|
<script>
|
|
|
|
|
window.appName = "{{ $appName ?? config('app.name') }}";
|
|
|
|
|
</script>
|
2025-12-30 15:03:19 +08:00
|
|
|
</head>
|
|
|
|
|
<body class="font-sans antialiased">
|
|
|
|
|
@inertia
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|