<?php
include 'layout/Layout.php';
?>
<!DOCTYPE html>
<html lang="en">
    <head>
        <?=Layout::head()?>
        <meta name="google-site-verification" content="kB-BAYbM0n4nVITa5oaj2OiSxxBzCdzGW0HyIJGktjk" />
    </head>
    <body style="
        font-family: 'Roboto', sans-serif;
    ">
    <!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5VRJL72Q"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
        <?php
            Layout::header();
            include 'layout/home/slider.php';
            include 'layout/home/products.php';
            include 'layout/home/about.php';
            include 'layout/home/why-us.php';
            include 'layout/home/portfolio.php';
            include 'layout/home/testimonial.php';
            include 'layout/home/contact-form.php';
        ?>
        <?php
            Layout::footer();
            Layout::script();
        ?>
    </body>	
    <script>
        $('.testimonial-slider').owlCarousel({
            loop:true,
            margin:10,
            nav:true,
            responsive:{
                0:{
                    items:1
                },
                600:{
                    items:2
                },
                1000:{
                    items:3
                }
            }
        })
    </script>
</html>	