82 lines
4.8 KiB
PHP
82 lines
4.8 KiB
PHP
<footer class="mt-5 py-5 border-top border-secondary bg-darker">
|
|
<div class="container">
|
|
<div class="row g-4 mb-5">
|
|
<div class="col-lg-4 col-md-12">
|
|
<div class="logo-container mb-3">
|
|
<div class="logo-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M12 2L2 7L12 12L22 7L12 2Z" fill="white"/>
|
|
<path d="M2 17L12 22L22 17" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
<path d="M2 12L12 17L22 12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</div>
|
|
<span class="logo-text">Byro</span>
|
|
</div>
|
|
<p class="text-muted small mb-4">
|
|
Byro is the world's most trusted digital asset exchange for individuals and institutions.
|
|
Trade, store, and earn cryptocurrency with confidence.
|
|
</p>
|
|
<div class="social-links d-flex gap-3 fs-5 text-muted">
|
|
<a href="#" class="text-reset"><i class="bi bi-twitter-x"></i></a>
|
|
<a href="#" class="text-reset"><i class="bi bi-telegram"></i></a>
|
|
<a href="#" class="text-reset"><i class="bi bi-discord"></i></a>
|
|
<a href="#" class="text-reset"><i class="bi bi-facebook"></i></a>
|
|
<a href="#" class="text-reset"><i class="bi bi-instagram"></i></a>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-md-4">
|
|
<h6 class="fw-bold mb-3"><?php echo __('footer_about'); ?></h6>
|
|
<ul class="list-unstyled small lh-lg">
|
|
<li><a href="/about.php" class="text-muted text-decoration-none"><?php echo __('about_us'); ?></a></li>
|
|
<li><a href="/news.php" class="text-muted text-decoration-none"><?php echo __('news'); ?></a></li>
|
|
<li><a href="/tos.php" class="text-muted text-decoration-none"><?php echo __('terms'); ?></a></li>
|
|
<li><a href="/help.php" class="text-muted text-decoration-none"><?php echo __('help'); ?></a></li>
|
|
<li><a href="/legal.php" class="text-muted text-decoration-none"><?php echo __('privacy'); ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-2 col-md-4">
|
|
<h6 class="fw-bold mb-3"><?php echo __('footer_product'); ?></h6>
|
|
<ul class="list-unstyled small lh-lg">
|
|
<li><a href="/binary.php" class="text-muted text-decoration-none"><?php echo __('second_contract'); ?></a></li>
|
|
<li><a href="/trade.php" class="text-muted text-decoration-none"><?php echo __('spot'); ?></a></li>
|
|
<li><a href="/contract.php" class="text-muted text-decoration-none"><?php echo __('contract'); ?></a></li>
|
|
<li><a href="/swap.php" class="text-muted text-decoration-none"><?php echo __('swap'); ?></a></li>
|
|
<li><a href="/mining.php" class="text-muted text-decoration-none"><?php echo __('mining'); ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-2 col-md-4">
|
|
<h6 class="fw-bold mb-3"><?php echo __('footer_support'); ?></h6>
|
|
<ul class="list-unstyled small lh-lg">
|
|
<li><a href="/support.php" class="text-muted text-decoration-none"><?php echo __('submit_request'); ?></a></li>
|
|
<li><a href="/api.php" class="text-muted text-decoration-none"><?php echo __('api_doc'); ?></a></li>
|
|
<li><a href="/fees.php" class="text-muted text-decoration-none"><?php echo __('fee_structure'); ?></a></li>
|
|
<li><a href="/app.php" class="text-muted text-decoration-none"><?php echo __('app_download'); ?></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="border-top border-secondary pt-4 d-flex flex-column flex-md-row justify-content-between align-items-center gap-3">
|
|
<div class="small text-muted">
|
|
<?php echo __('copyright'); ?>
|
|
</div>
|
|
<div class="d-flex gap-4 small text-muted">
|
|
<span class="d-flex align-items-center gap-2 text-success">
|
|
<span class="status-indicator"></span>
|
|
<?php echo __('status_normal'); ?>
|
|
</span>
|
|
<a href="/cookie-policy.php" class="text-reset text-decoration-none"><?php echo __('cookie_policy'); ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
.bg-darker {
|
|
background-color: #080808;
|
|
}
|
|
footer a:hover {
|
|
color: var(--primary) !important;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|