22 lines
642 B
PHP
22 lines
642 B
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>KamilCraft API - @yield('title')</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Styles -->
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
@stack('styles')
|
|
</head>
|
|
<body class="antialiased">
|
|
<main id="main">
|
|
@yield('main')
|
|
</main>
|
|
</body>
|
|
</html>
|