File: //home/jibhires/brightsolutionsindia.com/header.php
<?php
$company_name = "Bright Solutions";
$nav_links = [
'Home' => 'index.php',
'About' => 'about.php',
'Services' => 'services.php',
'Products' => 'products.php',
'Industries' => 'industries.php',
'Contact' => 'contact.php'
];
// Set page-specific meta descriptions
$meta_descriptions = [
'Home' => 'Industry 4.0 solutions provider offering IoT automation, smart factory solutions, and industrial label systems',
'About' => 'About Bright Solutions - Trusted automation partner since 2017',
'Services' => 'Our automation services including traceability systems and barcode solutions',
// Add descriptions for other pages
];
$meta_description = $meta_descriptions[$current_page] ?? 'Industrial automation solutions provider';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $company_name . " | " . $page_title; ?></title>
<meta name="description" content="<?php echo $meta_description; ?>">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom CSS -->
<style>
.hero-section {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('/assets/img/backgrounds/industry4.0.jpg') center/cover;
min-height: 80vh;
display: flex;
align-items: center;
color: white;
}
.navbar { border-bottom: 3px solid #0d6efd; }
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="index.php"><?php echo $company_name; ?></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<?php foreach($nav_links as $text => $link): ?>
<li class="nav-item <?php echo ($current_page == $text) ? 'active' : ''; ?>">
<a class="nav-link" href="<?php echo $link; ?>"><?php echo $text; ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</nav>