47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title', env('APP_NAME'))</title>
|
|
@yield('meta')
|
|
<!-- Favicon -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
|
|
<link rel="manifest" href="favicon/site.webmanifest">
|
|
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<!-- Font -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Sintony:wght@400;700&display=swap" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="{{ asset('frontend/css/style.css') }}" />
|
|
<!-- Vite Asset Injection -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js', 'resources/js/frontend/app.js'])
|
|
</head>
|
|
<body class="bg-[#f9f9f9]">
|
|
|
|
{{-- header --}}
|
|
@include('frontend.layouts.partials.header')
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
|
|
{{-- footer --}}
|
|
<footer class="relative bg-[#EEF6FC]">
|
|
@include('frontend.layouts.partials.footer')
|
|
</footer>
|
|
|
|
<!-- jQuery CDN -->
|
|
<script src="{{ asset('frontend/vendor/jquery-3.6.0.min.js') }}"></script>
|
|
<script src="{{ asset('frontend/vendor/youtube.js') }}"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|