32 lines
786 B
PHP
32 lines
786 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">
|
|
|
|
<title inertia>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
|
|
|
|
<!-- Icons -->
|
|
<link rel="stylesheet" href="{{ url('/vendors/fontawesome/css/all.min.css') }}">
|
|
|
|
<!-- Scripts -->
|
|
<style>
|
|
.gradient {
|
|
background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
|
|
}
|
|
</style>
|
|
@routes
|
|
@vite('resources/js/app.js')
|
|
@inertiaHead
|
|
</head>
|
|
|
|
<body class="font-sans antialiased gradient">
|
|
@inertia
|
|
</body>
|
|
|
|
</html>
|