80 lines
3.9 KiB
PHP
80 lines
3.9 KiB
PHP
<?php
|
|
require_once 'includes/header.php';
|
|
|
|
$slug = $_GET['slug'] ?? 'about';
|
|
|
|
$pages = [
|
|
'about' => [
|
|
'title' => 'About BITCrypto',
|
|
'content' => 'BITCrypto is a world-leading cryptocurrency exchange, providing advanced financial services to traders globally using blockchain technology.',
|
|
'image' => 'https://images.pexels.com/photos/6771607/pexels-photo-6771607.jpeg?auto=compress&cs=tinysrgb&w=800'
|
|
],
|
|
'terms' => [
|
|
'title' => 'Terms of Service',
|
|
'content' => 'By using BITCrypto services, you agree to comply with our terms and conditions regarding digital asset trading and platform usage.',
|
|
'image' => 'https://images.pexels.com/photos/6771574/pexels-photo-6771574.jpeg?auto=compress&cs=tinysrgb&w=800'
|
|
],
|
|
'privacy' => [
|
|
'title' => 'Privacy Policy',
|
|
'content' => 'Your privacy is important to us. We protect your personal data with institutional-grade security and encryption.',
|
|
'image' => 'https://images.pexels.com/photos/6770610/pexels-photo-6770610.jpeg?auto=compress&cs=tinysrgb&w=800'
|
|
],
|
|
'help-center' => [
|
|
'title' => 'Help Center',
|
|
'content' => 'Need help? Our 24/7 support team is here to assist you with any questions about trading, deposits, or account security.',
|
|
'image' => 'https://images.pexels.com/photos/7567443/pexels-photo-7567443.jpeg?auto=compress&cs=tinysrgb&w=800'
|
|
],
|
|
'security-info' => [
|
|
'title' => 'Security First',
|
|
'content' => 'We employ the most rigorous security standards in the industry, including multi-sig wallets and 2FA to keep your funds safe.',
|
|
'image' => 'https://images.pexels.com/photos/6771611/pexels-photo-6771611.jpeg?auto=compress&cs=tinysrgb&w=800'
|
|
]
|
|
];
|
|
|
|
$page = $pages[$slug] ?? $pages['about'];
|
|
?>
|
|
|
|
<div class="container my-5 py-5">
|
|
<div class="row g-5 align-items-center">
|
|
<div class="col-lg-6">
|
|
<h1 class="display-4 fw-bold mb-4 text-white"><?php echo t($page['title']); ?></h1>
|
|
<div class="lead text-muted mb-5 fs-4">
|
|
<?php echo t($page['content']); ?>
|
|
</div>
|
|
<a href="register.php" class="btn btn-primary px-5 py-3 fw-bold" style="background-color: var(--okx-blue); border: none; border-radius: 12px;"><?php echo mt('Register Now'); ?></a>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="rounded-4 overflow-hidden shadow-lg border border-secondary">
|
|
<img src="<?php echo $page['image']; ?>" class="img-fluid w-100" alt="Crypto Image">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-5 pt-5 border-top border-secondary">
|
|
<div class="row g-4">
|
|
<div class="col-md-4">
|
|
<div class="p-4 bg-dark rounded-4 border border-secondary h-100">
|
|
<i class="fas fa-shield-alt fa-3x mb-3 text-primary"></i>
|
|
<h5 class="text-white">Secure Assets</h5>
|
|
<p class="text-muted mb-0">98% of digital assets are stored in offline cold wallets.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="p-4 bg-dark rounded-4 border border-secondary h-100">
|
|
<i class="fas fa-bolt fa-3x mb-3 text-warning"></i>
|
|
<h5 class="text-white">Fast Execution</h5>
|
|
<p class="text-muted mb-0">Proprietary matching engine capable of millions of TPS.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="p-4 bg-dark rounded-4 border border-secondary h-100">
|
|
<i class="fas fa-headset fa-3x mb-3 text-success"></i>
|
|
<h5 class="text-white">Expert Support</h5>
|
|
<p class="text-muted mb-0">Professional assistance in multiple languages 24/7/365.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once 'includes/footer.php'; ?>
|