39036-vm/zh/about.php
2026-03-09 02:49:40 +00:00

66 lines
2.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
@date_default_timezone_set('UTC');
require_once __DIR__ . '/../includes/data.php';
$lang = 'zh';
$site = site_config($lang);
$pageTitle = $site['brand'] . ' | 关于我们';
$pageDescription = '了解工厂实力与工程团队。';
$assetVersion = (string) time();
$navItems = $site['nav'];
$langSwitchUrl = '/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">以工程为核心的工业照明制造商</h1>
<p class="text-muted">涵盖研发、生产、光学测试与全球出货协同的完整制造链路。</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="工程与测试中心" width="520" height="420" />
</div>
<div class="col-lg-6">
<h2>我们的核心优势</h2>
<p class="text-muted">从LED驱动选型到光学报告严格控制每一道工艺为全球客户提供稳定品质。</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'; ?>