39 lines
2.4 KiB
PHP
39 lines
2.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/includes/app.php';
|
|
$services = kei_services();
|
|
render_head('Layanan', 'Integrated entertainment services from KOBA Entertainment Indonesia.');
|
|
render_header('services');
|
|
?>
|
|
<main>
|
|
<section class="page-hero section-space-sm">
|
|
<div class="container-fluid kei-container narrow-copy">
|
|
<span class="eyebrow"<?= copy_attrs(['id' => 'Layanan', 'jp' => 'サービス']) ?>>Layanan</span>
|
|
<h1 class="page-title"<?= copy_attrs(['id' => 'Integrated entertainment solutions with international standards.', 'jp' => '国際水準で提供する統合型エンターテインメントソリューション。']) ?>>Integrated entertainment solutions with international standards.</h1>
|
|
<p class="page-copy"<?= copy_attrs(['id' => 'Setiap layanan KEI dirancang untuk menghasilkan kualitas tinggi, pengalaman premium, dan eksekusi yang konsisten.', 'jp' => 'KEIの各サービスは、高品質、プレミアムな体験、一貫した実行力を実現するよう設計されています。']) ?>>Setiap layanan KEI dirancang untuk menghasilkan kualitas tinggi, pengalaman premium, dan eksekusi yang konsisten.</p>
|
|
</div>
|
|
</section>
|
|
<section class="section-space-sm border-top-soft">
|
|
<div class="container-fluid kei-container">
|
|
<?php foreach ($services as $index => $service): ?>
|
|
<article class="service-detail <?= $index < count($services) - 1 ? 'with-border' : '' ?>">
|
|
<div>
|
|
<span class="service-code large"><?= h($service['code']) ?></span>
|
|
</div>
|
|
<div>
|
|
<h2<?= copy_attrs($service['title']) ?>><?= h(copy_text($service['title'])) ?></h2>
|
|
<p<?= copy_attrs($service['description']) ?>><?= h(copy_text($service['description'])) ?></p>
|
|
</div>
|
|
<div>
|
|
<div class="detail-panel">
|
|
<span class="eyebrow"<?= copy_attrs(['id' => 'Manfaat', 'jp' => 'ベネフィット']) ?>>Manfaat</span>
|
|
<p class="mb-0"<?= copy_attrs($service['benefit']) ?>><?= h(copy_text($service['benefit'])) ?></p>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<?php render_footer(); ?>
|