MIF_E31222381/AdmindukPuger-master/resources/views/layouts/LayoutUser.blade.php

50 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<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">
@vite(['resources/css/app.css', 'resources/js/app.js', 'resources/css/font.css'])
{{-- LINK GOOGLE FONT --}}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
{{-- LINK FONT --}}
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
{{-- SWIPER --}}
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<title>AdmindukPuger</title>
</head>
<body class="scroll-smooth">
<nav class="flex justify-center">
<div class=" bg-white fixed w-full z-20 top-0 flex justify-center ">
<div class="container">
<div class=" flex flex-wrap items-center justify-between py-2 md:py-0 px-10">
@include('components.navbar-user')
</div>
</div>
</div>
</nav>
<div class="flex justify-center">
<div class="">
{{ $slot }}
</div>
</div>
<footer>
@include('components.footer-user')
</footer>
</body>
</html>