50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
|
|
|
|
|
<title inertia>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet"/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.ico">
|
|
<link rel="stylesheet" href="/css/bvi.min.css">
|
|
|
|
|
|
<!-- Scripts -->
|
|
@routes
|
|
|
|
@vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"])
|
|
@inertiaHead
|
|
</head>
|
|
<style>
|
|
a, button {
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
|
|
-webkit-tap-highlight-color: transparent !important;
|
|
}
|
|
|
|
.ce-header {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
scroll-padding: 6rem;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
<body class="">
|
|
@inertia
|
|
</body>
|
|
|
|
</html>
|