40 lines
1.8 KiB
PHP
40 lines
1.8 KiB
PHP
<?php
|
|
require_once __DIR__ . '/includes/lang.php';
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
<main class="container py-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<h1 class="mb-4 fw-bold"><?php echo __('about_us'); ?></h1>
|
|
<div class="card bg-dark border-secondary p-4">
|
|
<p class="lead mb-4"><?php echo __('about_content'); ?></p>
|
|
<h3 class="mt-4 mb-3">Our Mission</h3>
|
|
<p class="text-muted">
|
|
To make digital asset trading accessible, secure, and intuitive for everyone, everywhere.
|
|
We believe in the power of blockchain to transform the global financial landscape.
|
|
</p>
|
|
<h3 class="mt-4 mb-3">Global Presence</h3>
|
|
<p class="text-muted">
|
|
With offices in Singapore, London, and Tokyo, Byro serves a diverse global community.
|
|
We are compliant with international standards and prioritize the security of our users' assets.
|
|
</p>
|
|
<div class="row mt-5 text-center">
|
|
<div class="col-4">
|
|
<h2 class="fw-bold text-primary">5M+</h2>
|
|
<p class="small text-muted">Users</p>
|
|
</div>
|
|
<div class="col-4">
|
|
<h2 class="fw-bold text-primary">100+</h2>
|
|
<p class="small text-muted">Countries</p>
|
|
</div>
|
|
<div class="col-4">
|
|
<h2 class="fw-bold text-primary">$10B+</h2>
|
|
<p class="small text-muted">Daily Volume</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|