<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Le Cabinet RH</title>

    <!-- Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
    <link type="text/css" rel="stylesheet" href="{{ asset('assets/css/app.css') }}">
    <script type="text/javascript" src="{{ asset('assets/js/app.js') }}"></script>

    <style>
        body {
            font-family: 'Nunito', sans-serif;
        }

        ul.no-style {
            padding: initial;
            margin: initial;
        }

        ul.no-style > li {
            padding: initial;
            margin: initial;
            list-style-type: none;
        }
    </style>
</head>
<body>
@section('header')
    @include('backend.sections.header')
@show

@yield('main', 'Section main')

@section('footer')
    @include('backend.sections.footer')
@show
</body>
</html>


