46 lines
2.0 KiB
PHP
46 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title')</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap">
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('assets/frontend/vendors/bootstrap/css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
|
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
|
|
|
|
<!-- Scripts -->
|
|
<!-- @vite(['resources/css/app.css', 'resources/js/app.js']) -->
|
|
</head>
|
|
<style>
|
|
.container,
|
|
.navbar {
|
|
font-family: Roboto;
|
|
}
|
|
.viewPort{
|
|
background-image: url({{asset('assets/frontend/images/backgroundImage.png')}});
|
|
background-size: cover;
|
|
}
|
|
</style>
|
|
<body>
|
|
<!--<div class="fixed-top">
|
|
</div>-->
|
|
<div class="vh-100 col-md-12 ml-sm-auto col-lg-12 viewPort">
|
|
@yield('content')
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript" src="{{ asset('assets/frontend/vendors/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
@yield('scripts')
|
|
</html>
|