dealhub/resources/views/components/layout.blade.php
kusowl 33cbdea12b feat(landing page): add navbar and hero section
- change root route '/' to HomeController
- add main layout
- add navbar and hero blade component
- add custom tailwind classes
- separate css files for button component
2026-01-07 17:03:18 +05:30

21 lines
620 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>