lk.zachem.info/resources/views/layouts/guest.blade.php
2025-02-05 08:25:10 +08:00

87 lines
2.8 KiB
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>Laravel</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" />
<!-- Bootstrap -->
<!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous">
</script>-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
@vite(['resources/sass/app.scss', 'resources/js/app.js', 'resources/css/app.css'])
<style>
html,
body {
height: 100% !important
}
/*
* Globals
*/
/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
color: #333;
text-shadow: none;
/* Prevent inheritance from `body` */
}
/*
* Base structure
*/
.cover-container {
max-width: 42em;
}
/*
* Header
*/
</style>
</head>
<body class="d-flex align-items-center py-4 bg-body-tertiary h-100">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<h3 class="float-md-start mb-0">
<img class=""
data-original="{{ url('/images/logo.svg') }}" alt=""
imgfield="tn_img_1702578351550" src="{{ url('/images/logo.svg') }}" width="100">
</h3>
<div class="justify-content-center float-md-end">
<div>
<span class="fw-bold py-1 px-0 fs-3 text-secondary" aria-current="page" href="#">8-800-222-06-10</span>
<div>Звонок по РФ бесплатный</div>
</div>
</div>
</header>
<main class="px-3">
@yield('content')
</main>
<footer class="mt-auto">
<div class="container">
<span class="text-body-secondary">&copy; Группа компаний «АЛЬФА»</span>
</div>
</footer>
</div>
</body>
</html>