dealhub/resources/views/components/layout.blade.php
kusowl 1938e8a864 feat(auth pages): added login and register pages
- fixed input component that not shows input field if label is not passed in props
2026-01-08 18:03:12 +05:30

21 lines
621 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>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
<!-- Styles / Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="bg-[#FFFFFF] text-[#1b1b18] flex min-h-screen flex-col">
{{$slot}}
</body>
</html>