Files
ikea/resources/views/app.blade.php
2024-01-21 10:17:20 +01:00

33 lines
790 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 bg-gray-100">
@inertia
</body>
</html>