20 lines
No EOL
627 B
PHP
20 lines
No EOL
627 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name', 'FFR') }}</title>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="icon" type="image/png" href="/favicon.ico">
|
|
|
|
<!-- Vite -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.tsx'])
|
|
</head>
|
|
<body class="font-sans antialiased bg-gray-50">
|
|
<div id="app"></div>
|
|
</body>
|
|
</html> |