Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CryptoTrust | KYC & AML Compliance Platform</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
.gradient-bg { | |
background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%); | |
} | |
.card-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.kyc-progress { | |
height: 8px; | |
border-radius: 4px; | |
} | |
.kyc-step { | |
width: 30px; | |
height: 30px; | |
border-radius: 50%; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
.feature-icon { | |
width: 60px; | |
height: 60px; | |
border-radius: 16px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
.coin-animation { | |
animation: float 3s ease-in-out infinite; | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-10px); } | |
100% { transform: translateY(0px); } | |
} | |
.compliance-card { | |
transition: all 0.3s ease; | |
} | |
.compliance-card:hover { | |
transform: translateY(-3px); | |
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); | |
} | |
.gauge { | |
position: relative; | |
width: 100%; | |
height: 120px; | |
margin: 0 auto; | |
} | |
.gauge-body { | |
width: 100%; | |
height: 0; | |
padding-bottom: 50%; | |
position: relative; | |
border-top-left-radius: 100% 200%; | |
border-top-right-radius: 100% 200%; | |
overflow: hidden; | |
background: #e0e0e0; | |
} | |
.gauge-fill { | |
position: absolute; | |
top: 100%; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: linear-gradient(90deg, #3b82f6, #1d4ed8); | |
transform-origin: center top; | |
transform: rotate(0.5turn); | |
transition: transform 0.5s ease-out; | |
} | |
.gauge-cover { | |
width: 75%; | |
height: 150%; | |
background: white; | |
border-radius: 50%; | |
position: absolute; | |
top: 25%; | |
left: 50%; | |
transform: translateX(-50%); | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-size: 1.5rem; | |
font-weight: bold; | |
color: #1e3a8a; | |
} | |
</style> | |
</head> | |
<body class="font-sans antialiased text-gray-800"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fab fa-bitcoin text-blue-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-blue-600">CryptoTrust (SaaS)</span> | |
</div> | |
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"> | |
<a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> | |
<a href="#features" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a> | |
<a href="#kyc" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">KYC/AML</a> | |
<a href="#treasury" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Treasury</a> | |
<a href="#contact" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Contact</a> | |
</div> | |
</div> | |
<div class="hidden sm:ml-6 sm:flex sm:items-center"> | |
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</button> | |
</div> | |
<div class="-mr-2 flex items-center sm:hidden"> | |
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div class="sm:hidden hidden" id="mobile-menu"> | |
<div class="pt-2 pb-4 space-y-1"> | |
<a href="#" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> | |
<a href="#features" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a> | |
<a href="#kyc" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">KYC/AML</a> | |
<a href="#treasury" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Treasury</a> | |
<a href="#contact" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Contact</a> | |
<div class="mt-4 pl-3"> | |
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium w-full transition duration-300">Get Started</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<div class="gradient-bg text-white"> | |
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> | |
<div class="text-center"> | |
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl"> | |
Cryptocurrency Compliance Platform | |
</h1> | |
<p class="mt-6 max-w-lg mx-auto text-xl text-blue-100"> | |
We trade with confidence using our KYC/AML compliance platform sponsored by Cryptocurrency Treasury Management, BT | |
</p> | |
</div> | |
<div class="mt-16 flex justify-center"> | |
<div class="relative w-full max-w-4xl"> | |
<div class="absolute -inset-2 bg-blue-400 rounded-lg opacity-20 blur"></div> | |
<div class="relative bg-white rounded-lg shadow-xl p-6"> | |
<div class="flex justify-between items-center mb-4"> | |
<div class="flex space-x-2"> | |
<div class="w-3 h-3 rounded-full bg-red-500"></div> | |
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
<div class="w-3 h-3 rounded-full bg-green-500"></div> | |
</div> | |
<div class="text-sm text-gray-500">CryptoTrust (SaaS) Compliance Dashboard</div> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
<!-- Compliance Score Gauge --> | |
<div class="compliance-card bg-gray-50 p-4 rounded-lg border border-gray-200"> | |
<div class="flex items-center justify-between mb-2"> | |
<h3 class="text-sm font-medium text-gray-500">Compliance Score</h3> | |
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded-full">Live</span> | |
</div> | |
<div class="gauge"> | |
<div class="gauge-body"> | |
<div class="gauge-fill" id="compliance-gauge"></div> | |
<div class="gauge-cover" id="compliance-score">87%</div> | |
</div> | |
</div> | |
<div class="mt-4 text-center"> | |
<p class="text-xs text-gray-500">Based on 32 compliance factors</p> | |
</div> | |
</div> | |
<!-- KYC Completion --> | |
<div class="compliance-card bg-gray-50 p-4 rounded-lg border border-gray-200"> | |
<div class="flex items-center justify-between mb-2"> | |
<h3 class="text-sm font-medium text-gray-500">KYC Completion</h3> | |
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded-full">+12%</span> | |
</div> | |
<div class="flex items-center justify-between mb-2"> | |
<span class="text-2xl font-bold text-gray-800">92%</span> | |
<div class="w-1/2"> | |
<div class="h-2 bg-gray-200 rounded-full overflow-hidden"> | |
<div class="h-full bg-green-500 rounded-full" style="width: 92%"></div> | |
</div> | |
</div> | |
</div> | |
<div class="grid grid-cols-2 gap-2 text-xs"> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-green-500 mr-1"></div> | |
<span>Completed: 1,842</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-yellow-500 mr-1"></div> | |
<span>Pending: 128</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-red-500 mr-1"></div> | |
<span>Rejected: 36</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-blue-500 mr-1"></div> | |
<span>Total: 2,006</span> | |
</div> | |
</div> | |
</div> | |
<!-- AML Alerts --> | |
<div class="compliance-card bg-gray-50 p-4 rounded-lg border border-gray-200"> | |
<div class="flex items-center justify-between mb-2"> | |
<h3 class="text-sm font-medium text-gray-500">AML Alerts</h3> | |
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded-full">3 New</span> | |
</div> | |
<div class="flex items-center justify-between mb-4"> | |
<span class="text-2xl font-bold text-gray-800">24</span> | |
<div class="text-right"> | |
<div class="text-sm text-gray-500">This month</div> | |
<div class="text-xs text-red-500">↑ 18% from last month</div> | |
</div> | |
</div> | |
<div class="space-y-2"> | |
<div class="flex items-center justify-between text-xs"> | |
<span class="text-gray-600">High Risk</span> | |
<span class="font-medium">8</span> | |
</div> | |
<div class="flex items-center justify-between text-xs"> | |
<span class="text-gray-600">Medium Risk</span> | |
<span class="font-medium">12</span> | |
</div> | |
<div class="flex items-center justify-between text-xs"> | |
<span class="text-gray-600">Low Risk</span> | |
<span class="font-medium">4</span> | |
</div> | |
</div> | |
</div> | |
<!-- Compliance Timeline --> | |
<div class="md:col-span-2 compliance-card bg-gray-50 p-4 rounded-lg border border-gray-200"> | |
<div class="flex items-center justify-between mb-4"> | |
<h3 class="text-sm font-medium text-gray-500">Recent Compliance Activity</h3> | |
<button class="text-xs text-blue-600 hover:text-blue-800">View All</button> | |
</div> | |
<div class="space-y-3"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-2 h-2 rounded-full bg-green-500"></div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-xs font-medium">KYC verification completed for user #2048</p> | |
<p class="text-xs text-gray-500">2 minutes ago</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-2 h-2 rounded-full bg-red-500"></div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-xs font-medium">AML alert triggered for transaction #TX48921</p> | |
<p class="text-xs text-gray-500">15 minutes ago</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-2 h-2 rounded-full bg-yellow-500"></div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-xs font-medium">Document verification required for 3 pending KYC cases</p> | |
<p class="text-xs text-gray-500">1 hour ago</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-2 h-2 rounded-full bg-blue-500"></div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-xs font-medium">Monthly compliance report generated</p> | |
<p class="text-xs text-gray-500">3 hours ago</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Risk Distribution --> | |
<div class="compliance-card bg-gray-50 p-4 rounded-lg border border-gray-200"> | |
<div class="flex items-center justify-between mb-4"> | |
<h3 class="text-sm font-medium text-gray-500">Risk Distribution</h3> | |
<button class="text-xs text-blue-600 hover:text-blue-800">Details</button> | |
</div> | |
<div class="relative h-32"> | |
<canvas id="riskChart"></canvas> | |
</div> | |
<div class="mt-2 grid grid-cols-3 gap-2 text-center text-xs"> | |
<div> | |
<div class="font-medium">Low</div> | |
<div class="text-gray-500">62%</div> | |
</div> | |
<div> | |
<div class="font-medium">Medium</div> | |
<div class="text-gray-500">28%</div> | |
</div> | |
<div> | |
<div class="font-medium">High</div> | |
<div class="text-gray-500">10%</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Features Section --> | |
<div id="features" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Advanced Trading Features | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> | |
Our platform recommends everything needed for secure and efficient cryptocurrency trading | |
</p> | |
</div> | |
<div class="mt-16 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-blue-100 text-blue-600 mx-auto"> | |
<i class="fas fa-shield-alt text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">Bank-Level Security</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Multi-signature wallets, cold storage, and 2FA protection to keep assets secure. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-green-100 text-green-600 mx-auto"> | |
<i class="fas fa-exchange-alt text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">Instant Exchange</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Swaps between 100+ cryptocurrencies in seconds with trading pools providing a national liquidity network. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-purple-100 text-purple-600 mx-auto"> | |
<i class="fas fa-chart-pie text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">Advanced Trading Bots</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Always opt for real-time market data. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-yellow-100 text-yellow-600 mx-auto"> | |
<i class="fas fa-mobile-alt text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">Mobile Apps</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Trade on the go with iOS and Android apps featuring biometric login. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-red-100 text-red-600 mx-auto"> | |
<i class="fas fa-hand-holding-usd text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">Staking Rewards</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Earn up to 0.3% APY by staking cryptocurrencies. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 pt-6"> | |
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full"> | |
<div class="-mt-6"> | |
<div class="feature-icon bg-indigo-100 text-indigo-600 mx-auto"> | |
<i class="fas fa-headset text-2xl"></i> | |
</div> | |
<h3 class="mt-4 text-lg font-medium text-gray-900 text-center">24/7 Support</h3> | |
<p class="mt-3 text-base text-gray-500"> | |
Dedicated customer support available around the clock via chat and email. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- KYC/AML Section --> | |
<div id="kyc" class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
<div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
KYC & AML Compliance | |
</h2> | |
<p class="mt-3 text-xl text-gray-500"> | |
Our platform recommends full compliance with global regulations based on platform requirements to ensure safe and legal cryptocurrency trading. | |
</p> | |
<div class="mt-8"> | |
<div class="flex items-start mb-6"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-lg font-medium text-gray-900">Identity Verification</p> | |
<p class="mt-1 text-base text-gray-500"> | |
Trusted platforms submit government-issued ID and proof of address for account verification. | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start mb-6"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-lg font-medium text-gray-900">Transaction Monitoring</p> | |
<p class="mt-1 text-base text-gray-500"> | |
Advanced algorithms monitor all transactions for suspicious activity. | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-lg font-medium text-gray-900">Regulatory Reporting</p> | |
<p class="mt-1 text-base text-gray-500"> | |
Automatic reporting to comply with FATF and local financial regulations. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
<div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md"> | |
<div class="bg-white p-8 rounded-lg"> | |
<h3 class="text-lg font-medium text-gray-900 mb-6">Your KYC Verification</h3> | |
<div class="mb-6"> | |
<div class="flex justify-between mb-2"> | |
<span class="text-sm font-medium text-gray-700">Verification Progress Windows may vary from platform to platform.</span> | |
<span class="text-sm font-medium text-blue-600">60%</span> | |
</div> | |
<div class="w-full bg-gray-200 rounded-full h-2.5"> | |
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 60%"></div> | |
</div> | |
</div> | |
<div class="space-y-4"> | |
<div class="flex items-center"> | |
<div class="kyc-step bg-blue-100 text-blue-600"> | |
<i class="fas fa-check"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Email Verified</p> | |
<p class="text-xs text-gray-500">Completed</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="kyc-step bg-blue-100 text-blue-600"> | |
<i class="fas fa-check"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Phone Verified</p> | |
<p class="text-xs text-gray-500">Completed</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="kyc-step bg-blue-600 text-white"> | |
<span>3</span> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">ID Verification</p> | |
<p class="text-xs text-gray-500">Pending</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="kyc-step bg-gray-100 text-gray-400"> | |
<span>4</span> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-500">Proof of Address</p> | |
<p class="text-xs text-gray-400">Not started</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-8"> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-md text-sm font-medium transition duration-300"> | |
Continue Verification | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Treasury Management Section --> | |
<div id="treasury" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Sponsored by Cryptocurrency Treasury Management, BT | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> | |
Professional treasury solutions for a group of private companies. | |
</p> | |
</div> | |
<div class="mt-12 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-blue-100 rounded-md p-3"> | |
<i class="fas fa-lock text-blue-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Asset Protection</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
Multi-signature cold storage solutions with institutional-grade security protocols. | |
</p> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-green-100 rounded-md p-3"> | |
<i class="fas fa-chart-line text-green-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Yield Generation</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
Access to staking, lending, and DeFi opportunities with optimized risk management. | |
</p> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-purple-100 rounded-md p-3"> | |
<i class="fas fa-exchange-alt text-purple-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Liquidity Solutions</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
Trading desk with minimal slippage for large volume transactions. | |
</p> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-yellow-100 rounded-md p-3"> | |
<i class="fas fa-file-invoice-dollar text-yellow-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Tax & Reporting</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
Comprehensive tax reporting tools compliant with global accounting standards. | |
</p> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-red-100 rounded-md p-3"> | |
<i class="fas fa-shield-alt text-red-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Risk Management</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
Customizable risk parameters and insurance options for digital assets. | |
</p> | |
</div> | |
</div> | |
<div class="card-hover transition duration-300 bg-gray-50 rounded-lg overflow-hidden shadow"> | |
<div class="px-6 py-8"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-indigo-100 rounded-md p-3"> | |
<i class="fas fa-users text-indigo-600 text-xl"></i> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Dedicated Support</h3> | |
</div> | |
</div> | |
<p class="mt-4 text-base text-gray-500"> | |
24/7 access to treasury specialists and account managers. | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-16 bg-blue-50 rounded-lg overflow-hidden"> | |
<div class="px-6 py-12 sm:p-12"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-8 md:mb-0"> | |
<h3 class="text-2xl font-bold text-gray-900">Institutional-Grade Treasury Services</h3> | |
<p class="mt-4 text-gray-600"> | |
Our treasury management solutions are designed for our proprietary businesses to optimize cryptocurrency holdings,.and not available to the general public. | |
</p> | |
<div class="mt-6"> | |
</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 md:pl-8"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonials --> | |
<div class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- CTA Section --> | |
<div class="gradient-bg text-white"> | |
<div class="ml-3 inline-flex rounded-md shadow"> | |
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-20 hover:bg-opacity-30"> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Footer --> | |
<footer id="contact" class="bg-gray-800"> | |
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
<div class="col-span-2"> | |
<h3 class="text-white text-lg font-semibold mb-4">CryptoTrust (SaaS)</h3> | |
<p class="text-gray-300 text-sm"> | |
A KYC/AML compliance platform, sponsored by Cryptocurrency Treasury Management, BT | |
</p> | |
</div> | |
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between"> | |
<p class="text-gray-400 text-sm"> | |
© 2025 CryptoTrust (Saas). All rights reserved. | |
</p> | |
<div class="mt-4 md:mt-0"> | |
<p class="text-gray-400 text-sm"> | |
CryptoTrust (SaaS) does not provide Cryptocurrency services and is not registered with FinCEN. The goal of CryptoTrust (SaaS) is to provide a public facing information site for KYC & AML Compliance. | |
</p> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
<script> | |
// Mobile menu toggle | |
document.addEventListener('DOMContentLoaded', function() { | |
const mobileMenuButton = document.querySelector('button[aria-controls="mobile-menu"]'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', function() { | |
const expanded = this.getAttribute('aria-expanded') === 'true'; | |
this.setAttribute('aria-expanded', !expanded); | |
mobileMenu.classList.toggle('hidden'); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
if (targetId === '#') return; | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
targetElement.scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenuButton.setAttribute('aria-expanded', 'false'); | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
// Set compliance gauge | |
const complianceScore = 87; // percentage | |
const gaugeFill = document.getElementById('compliance-gauge'); | |
const gaugeRotation = complianceScore / 100 * 0.5; | |
gaugeFill.style.transform = `rotate(${gaugeRotation}turn)`; | |
// Initialize risk distribution chart | |
const riskCtx = document.getElementById('riskChart').getContext('2d'); | |
const riskChart = new Chart(riskCtx, { | |
type: 'doughnut', | |
data: { | |
labels: ['Low Risk', 'Medium Risk', 'High Risk'], | |
datasets: [{ | |
data: [62, 28, 10], | |
backgroundColor: [ | |
'#10B981', | |
'#F59E0B', | |
'#EF4444' | |
], | |
borderWidth: 0 | |
}] | |
}, | |
options: { | |
cutout: '70%', | |
plugins: { | |
legend: { | |
display: false | |
} | |
}, | |
animation: { | |
animateScale: true, | |
animateRotate: true | |
} | |
} | |
}); | |
// Simulate live data updates | |
setInterval(() => { | |
// Randomly fluctuate compliance score slightly | |
const fluctuation = (Math.random() * 4) - 2; // -2 to +2 | |
const newScore = Math.min(100, Math.max(80, complianceScore + fluctuation)); | |
document.getElementById('compliance-score').textContent = Math.round(newScore) + '%'; | |
const newRotation = newScore / 100 * 0.5; | |
gaugeFill.style.transform = `rotate(${newRotation}turn)`; | |
// Update risk chart data slightly | |
riskChart.data.datasets[0].data = [ | |
62 + (Math.random() * 4 - 2), | |
28 + (Math.random() * 4 - 2), | |
10 + (Math.random() * 4 - 2) | |
]; | |
riskChart.update(); | |
}, 3000); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/kycinfo-vbeta1-01" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |