This commit is contained in:
2023-11-19 20:58:40 +01:00
parent b3fdd071a2
commit d70be43c5d
48 changed files with 2864 additions and 25 deletions

View File

@@ -1,23 +1,31 @@
<!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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
<title inertia>{{ config('app.name', 'Laravel') }}</title>
<!-- Icons -->
<link rel="stylesheet" href="{{ url('/vendors/fontawesome/css/all.min.css') }}">
<!-- 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>
<!-- Scripts -->
@routes
@vite('resources/js/app.js')
@inertiaHead
</head>
<body class="font-sans antialiased">
@inertia
</body>
</html>