TIF_E41201452/Website/resources/views/layouts/app.blade.php

32 lines
1.1 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">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Criminal Detection') }}</title>
<link rel="icon" href="https://flowbite.com/docs/images/logo.svg">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
<style>
* { scroll-behavior: smooth; }
</style>
</head>
<body class="font-sans antialiased">
<div class="min-h-screen dark:bg-gray-900">
@include('layouts.navigation')
<!-- Page Content -->
<main class="w-full flex flex-1 flex-col">
@yield('content')
</main>
@include('layouts.footer')
</div>
</body>
</html>