File "clients.php"
Full path: /home/zvmcccat/public_html/adn/clients.php
File
size: 1.71 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
require_once __DIR__ . '/includes/config.php';
$meta_title = 'Clients & Projects';
$meta_description = 'Alpha Design & Networking project case studies across Government & Finance, Industrial Plants & Manufacturing, and Transportation Infrastructure.';
$current_page = 'clients';
require __DIR__ . '/includes/header.php';
$page_h1 = 'Clients & Projects';
$page_lede = 'Government & Finance, Industrial Plants & Manufacturing, and Transportation — a track record across Egypt\'s critical infrastructure.';
require __DIR__ . '/includes/partials/page-hero.php';
$projects = alpha_load_data('projects.php');
$cases = $projects['cases'] ?? [];
$more = $projects['more'] ?? [];
$sectors = [];
foreach ($cases as $case) {
$sectors[$case['sector']][] = $case;
}
?>
<section class="pad">
<?php foreach ($sectors as $sectorName => $sectorCases): ?>
<div class="sector-block">
<h2><?= htmlspecialchars($sectorName, ENT_QUOTES) ?></h2>
<div class="projects-grid">
<?php foreach ($sectorCases as $project): ?>
<?php include __DIR__ . '/includes/partials/project-card.php'; ?>
<?php endforeach; ?>
</div>
</div>
<?php endforeach; ?>
<div class="sector-block">
<div class="section-head">
<div class="eyebrow">And More</div>
<h2>Other clients we've worked with</h2>
<div class="rule"></div>
</div>
<div class="client-wall">
<?php foreach ($more as $client): ?>
<?php include __DIR__ . '/includes/partials/client-chip.php'; ?>
<?php endforeach; ?>
</div>
</div>
</section>
<?php require __DIR__ . '/includes/footer.php'; ?>