49 lines
2.5 KiB
PHP
49 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title', 'Arogin Hair Transplantation')</title>
|
|
|
|
<meta name="description"
|
|
content="Welcome to our hair transplantation clinic! We specialize in advanced hair restoration procedures tailored to your unique needs. Our experienced team uses the latest techniques to provide natural-looking results. Schedule a consultation today to regain your confidence and achieve the hair of your dreams.">
|
|
<!-- 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">
|
|
|
|
<!-- Vite Asset Injection -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js', 'resources/js/frontend/app.js'])
|
|
</head>
|
|
|
|
<body>
|
|
<div class="w-full h-screen flex flex-col items-center justify-center">
|
|
|
|
@yield('error_image')
|
|
<div class="flex flex-col items-center justify-center">
|
|
<p class="text-3xl md:text-4xl lg:text-5xl text-gray-800 mt-12">
|
|
@yield('error_title', 'Page Not Found')
|
|
</p>
|
|
<p class="md:text-lg lg:text-xl text-gray-600 mt-8">
|
|
@yield('error_desc', 'Sorry, the page you are looking for could not be found.')
|
|
</p>
|
|
<a href="@yield('error_redirect_btn_link', '#')" class="flex items-center space-x-2 bg-blue-600 hover:bg-blue-700 text-gray-100 px-4 py-2 mt-12 rounded transition duration-150" title="Return Home">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M9.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L7.414 9H15a1 1 0 110 2H7.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd"></path>
|
|
</svg>
|
|
<span>@yield('error_redirect_btn_title', 'Return Home')</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|