66 lines
2.4 KiB
PHP
66 lines
2.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
@date_default_timezone_set('UTC');
|
|
|
|
require_once __DIR__ . '/includes/data.php';
|
|
|
|
$lang = 'en';
|
|
$site = site_config($lang);
|
|
$pageTitle = $site['brand'] . ' | About Us';
|
|
$pageDescription = 'Meet the engineering team and manufacturing capabilities.';
|
|
$assetVersion = (string) time();
|
|
$navItems = $site['nav'];
|
|
$langSwitchUrl = '/zh/about.php';
|
|
|
|
$highlights = get_highlights($lang);
|
|
$facts = get_company_facts($lang);
|
|
?>
|
|
<?php require __DIR__ . '/includes/header.php'; ?>
|
|
|
|
<main>
|
|
<section class="page-hero">
|
|
<div class="container">
|
|
<div class="hero-panel">
|
|
<h1 class="display-6 fw-semibold">Engineering-led industrial lighting manufacturer</h1>
|
|
<p class="text-muted">A vertically integrated facility covering R&D, production, photometric testing, and global shipment coordination.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section-block pt-0">
|
|
<div class="container">
|
|
<div class="row g-4 align-items-center">
|
|
<div class="col-lg-6">
|
|
<img class="w-100 rounded-3 shadow-sm" src="/assets/images/factory-floor.svg" alt="Engineering and testing facility" width="520" height="420" />
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<h2>What sets us apart</h2>
|
|
<p class="text-muted">From LED driver selection to full photometric reports, we run a disciplined manufacturing workflow to ensure every shipment meets compliance and performance targets.</p>
|
|
<div class="row g-3 mt-3">
|
|
<?php foreach ($highlights as $highlight): ?>
|
|
<div class="col-md-6">
|
|
<div class="feature-box">
|
|
<h3 class="h6"><?= htmlspecialchars($highlight['title']) ?></h3>
|
|
<p class="small text-muted mb-0"><?= htmlspecialchars($highlight['text']) ?></p>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row g-4 mt-4">
|
|
<?php foreach ($facts as $fact): ?>
|
|
<div class="col-sm-6 col-lg-3">
|
|
<div class="detail-card text-center">
|
|
<div class="h4 mb-1"><?= htmlspecialchars($fact['value']) ?></div>
|
|
<div class="text-muted small"><?= htmlspecialchars($fact['label']) ?></div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<?php require __DIR__ . '/includes/footer.php'; ?>
|