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

64 lines
2.3 KiB
PHP

<?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 = '领先的美白护肤品研发与OEM代工解决方案。';
$assetVersion = (string) time();
$navItems = $site['nav'];
$langSwitchUrl = '/index.php';
$products = get_products($lang);
?>
<?php require __DIR__ . '/../includes/header.php'; ?>
<main>
<!-- Hero Section -->
<section class="hero-section bg-light py-5">
<div class="container">
<div id="heroCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row align-items-center">
<div class="col-lg-6">
<h1 class="display-4 fw-bold">先进美白科技,重塑肌肤之美</h1>
<p class="lead">从尖端护肤研究到成品落地,我们助力美妆品牌创造传奇。</p>
<a class="btn btn-primary btn-lg" href="/zh/products.php">查看护肤产品</a>
</div>
<div class="col-lg-6">
<img src="/assets/images/hero-structure.svg" class="d-block w-100" alt="护肤研发">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Products Section -->
<section class="section-block py-5">
<div class="container">
<h2 class="text-center mb-5">美白系列产品</h2>
<div class="row g-4">
<?php foreach ($products as $product): ?>
<div class="col-md-6 col-lg-3">
<article class="card h-100">
<img src="<?= htmlspecialchars($product['image']) ?>" class="card-img-top" alt="<?= htmlspecialchars($product['name']) ?>">
<div class="card-body">
<h3 class="h5"><?= htmlspecialchars($product['name']) ?></h3>
<p class="text-muted small"><?= htmlspecialchars($product['summary']) ?></p>
<a class="btn btn-outline-primary" href="/zh/product.php?id=<?= urlencode((string) $product['id']) ?>">查看详情</a>
</div>
</article>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
</main>
<?php require __DIR__ . '/../includes/footer.php'; ?>