<?php $__env->startSection('header.title', 'Notre nouveau site sera bientôt disponible !'); ?>
<!DOCTYPE html>
<html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>
        Le Cabinet RH
        <?php if (! empty(trim($__env->yieldContent('header.title')))): ?>
            - <?php echo $__env->yieldContent('header.title'); ?>
        <?php endif; ?>
    </title>

    <meta name="description" content="Le Cabinet RH - LCRH, c’est des personnes qui s’investissent dans vos recherches de candidats et qui pour ça, connaissent ou apprennent vos métiers et leurs environnements afin de pouvoir comprendre vos enjeux et d’y répondre au mieux.">

    <!-- Favicon -->
    <link rel="apple-touch-icon" sizes="57x57" href="<?php echo e(asset('favicon/apple-icon-57x57.png')); ?>">
    <link rel="apple-touch-icon" sizes="60x60" href="<?php echo e(asset('favicon/apple-icon-60x60.png')); ?>">
    <link rel="apple-touch-icon" sizes="72x72" href="<?php echo e(asset('favicon/apple-icon-72x72.png')); ?>">
    <link rel="apple-touch-icon" sizes="76x76" href="<?php echo e(asset('favicon/apple-icon-76x76.png')); ?>">
    <link rel="apple-touch-icon" sizes="114x114" href="<?php echo e(asset('favicon/apple-icon-114x114.png')); ?>">
    <link rel="apple-touch-icon" sizes="120x120" href="<?php echo e(asset('favicon/apple-icon-120x120.png')); ?>">
    <link rel="apple-touch-icon" sizes="144x144" href="<?php echo e(asset('favicon/apple-icon-144x144.png')); ?>">
    <link rel="apple-touch-icon" sizes="152x152" href="<?php echo e(asset('favicon/apple-icon-152x152.png')); ?>">
    <link rel="apple-touch-icon" sizes="180x180" href="<?php echo e(asset('favicon/apple-icon-180x180.png')); ?>">
    <link rel="icon" type="image/png" sizes="192x192"  href="<?php echo e(asset('favicon/android-icon-192x192.png')); ?>">
    <link rel="icon" type="image/png" sizes="32x32" href="<?php echo e(asset('favicon/favicon-32x32.png')); ?>">
    <link rel="icon" type="image/png" sizes="96x96" href="<?php echo e(asset('favicon/favicon-96x96.png')); ?>">
    <link rel="icon" type="image/png" sizes="16x16" href="<?php echo e(asset('favicon/favicon-16x16.png')); ?>">
    <link rel="manifest" href="<?php echo e(asset('manifest.json')); ?>">
    <meta name="msapplication-TileColor" content="#ffffff">
    <meta name="msapplication-TileImage" content="<?php echo e(asset('favicon/ms-icon-144x144.png')); ?>">
    <meta name="theme-color" content="#ffffff">

    <!-- 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="<?php echo e(asset('assets/css/app.css')); ?>?c=<?= uniqid() ?>">
    <script type="text/javascript" src="<?php echo e(asset('assets/js/app.js')); ?>?c=<?= uniqid() ?>"></script>

    <style>
        @font-face {
            font-family: "Myriad Pro";
            src: url(<?php echo e(asset('assets/fonts/myriadpro/MYRIADPRO-REGULAR.OTF')); ?>);
        }

        @font-face {
            font-family: "Poppins";
            src: url(<?php echo e(asset('assets/fonts/poppins/Poppins-Light.ttf')); ?>);
        }

        @font-face {
            font-family: "Poppins Regular";
            src: url(<?php echo e(asset('assets/fonts/poppins/Poppins-Regular.ttf')); ?>);
        }

        @font-face {
            font-family: "Poppins Bolder";
            src: url(<?php echo e(asset('assets/fonts/poppins/Poppins-Bold.ttf')); ?>);
        }

        body {
            font-family: "Myriad Pro";
        }

        body header, .font-f-2 {
            font-family: "Poppins";
        }

        body header strong, .font-f-2 strong {
            font-family: "Poppins Regular";
        }

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

        ul.no-style > li {
            padding: initial;
            margin: initial;
            list-style-type: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: bold;
            font-family: "Poppins Bolder";
        }

        h1 {
            font-size: 40px;
        }

        h2 {
            font-size: 32px;
        }

        h3 {
            font-size: 26px;
        }

        @media(max-width: 600px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 25px;
            }

            h3 {
                font-size: 22px;
            }
        }

        .bigText {
            font-size: 22px;
        }

        @media(max-width: 600px) {
            .bigText {
                font-size: 18px;
            }
        }
    </style>
</head>
<body class="bg-primary text-light">
<?php echo $__env->yieldPushContent('body.prepend'); ?>

<div class="d-flex p-5 justify-content-center text-center">
    <div class="d-flex flex-column gap-3 align-items-center">
        <img style="height: 200px; width: fit-content;" class="mb-5" src="<?php echo e(asset('assets/images/logo.png')); ?>" />
        <h1>Le Cabinet RH - LCRH</h1>

        <?php if (! empty(trim($__env->yieldContent('main')))): ?>
            <?php echo $__env->yieldContent('main'); ?>
        <?php else: ?>
            <div class="bigText"><?php echo $__env->yieldContent('header.title'); ?></div>
        <?php endif; ?>
    </div>
</div>

<?php $__env->startSection('footer'); ?>
    <?php echo $__env->make('frontend.sections.footer-coming-soon', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->yieldSection(); ?>

<?php echo $__env->yieldPushContent('body.append'); ?>
</body>
</html>
<?php /**PATH /home/pluma/web/lcrh/resources/views/frontend/layouts/coming-soon.blade.php ENDPATH**/ ?>