<?php $url = "https://ostadgroup.com/"; ?>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="author" content="MrCoder">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="manifest" href="<?php echo $url; ?>assets/img/favicons/manifest.json">
<meta name="theme-color" content="#ffffff">
<link rel="icon" type="image/x-icon" href="<?php echo $url; ?>assets/img/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="<?php echo $url; ?>assets/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php echo $url; ?>assets/css/fontawesome.min.css">
<link rel="stylesheet" href="<?php echo $url; ?>assets/css/magnific-popup.min.css">
<link rel="stylesheet" href="<?php echo $url; ?>assets/css/swiper-bundle.min.css">
<link rel="stylesheet" href="<?php echo $url; ?>assets/css/style.css">
<?php
$menuInfo = $connect -> prepare("select * from `tbl_menu`");
$menuInfo -> execute();
while($menuInfoRow = $menuInfo -> fetch(PDO::FETCH_ASSOC)){
    if($menuInfoRow['title'] == "darkLogo"){
        $darkLogo = $menuInfoRow['information'];
    }elseif($menuInfoRow['title'] == "lightLogo"){
        $lightLogo = $menuInfoRow['information'];
    }elseif($menuInfoRow['title'] == "phone"){
        $phone = $menuInfoRow['information'];
    }
}

?>
