25 lines
725 B
PHP
25 lines
725 B
PHP
<?php
|
|
require_once __DIR__ . '/includes/data.php';
|
|
$lang = 'en';
|
|
$site = site_config($lang);
|
|
?>
|
|
<?php require __DIR__ . '/includes/header.php'; ?>
|
|
<main class="container py-5">
|
|
<h1>Services & Customization</h1>
|
|
<div class="row g-4">
|
|
<div class="col-md-6">
|
|
<div class="card p-4">
|
|
<h3>OEM Manufacturing</h3>
|
|
<p>Full-scale production for established brands using our proven whitening formulas.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card p-4">
|
|
<h3>ODM/CDMO Solutions</h3>
|
|
<p>End-to-end product development, from ingredient research to final packaging.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php require __DIR__ . '/includes/footer.php'; ?>
|