Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CryptoInvestor Relations | Token Reports Hub</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%, #2563eb 50%, #3b82f6 100%); | |
} | |
.report-card: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); | |
} | |
.floating-btn { | |
transition: all 0.3s ease; | |
} | |
.floating-btn:hover { | |
transform: scale(1.1); | |
} | |
.dropdown-content { | |
display: none; | |
position: absolute; | |
bottom: 70px; | |
right: 0; | |
min-width: 220px; | |
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); | |
z-index: 1; | |
} | |
.show-dropdown { | |
display: block; | |
animation: fadeIn 0.3s; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; transform: translateY(10px); } | |
to { opacity: 1; transform: translateY(0); } | |
} | |
.token-chip { | |
transition: all 0.2s; | |
} | |
.token-chip:hover { | |
background-color: #3b82f6; | |
color: white; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="gradient-bg text-white shadow-lg"> | |
<div class="container mx-auto px-4 py-4"> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center space-x-2"> | |
<i class="fab fa-bitcoin text-2xl"></i> | |
<span class="text-xl font-bold">CryptoInvestor Relations</span> | |
</div> | |
<div class="hidden md:flex space-x-6"> | |
<a href="#reports" class="hover:text-blue-200 transition">Reports</a> | |
<a href="#financials" class="hover:text-blue-200 transition">Financials</a> | |
<a href="#governance" class="hover:text-blue-200 transition">Governance</a> | |
<a href="#about" class="hover:text-blue-200 transition">About</a> | |
</div> | |
<div class="md:hidden"> | |
<button class="text-white focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<header class="gradient-bg text-white py-20"> | |
<div class="container mx-auto px-4 text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-6">Transparent Crypto Reporting</h1> | |
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Access comprehensive reports for public cryptocurrency tokens to make informed investment decisions.</p> | |
<div class="flex flex-wrap justify-center gap-4 mb-8"> | |
<span class="token-chip bg-white text-blue-600 px-4 py-2 rounded-full font-medium cursor-pointer">FFFUND</span> | |
<span class="token-chip bg-white text-blue-600 px-4 py-2 rounded-full font-medium cursor-pointer">ETH</span> | |
<span class="token-chip bg-white text-blue-600 px-4 py-2 rounded-full font-medium cursor-pointer">BNB</span> | |
<span class="token-chip bg-white text-blue-600 px-4 py-2 rounded-full font-medium cursor-pointer">SOL</span> | |
<span class="token-chip bg-white text-blue-600 px-4 py-2 rounded-full font-medium cursor-pointer">XRP</span> | |
</div> | |
<button class="bg-white text-blue-600 font-bold px-8 py-3 rounded-full hover:bg-blue-100 transition"> | |
Explore Reports | |
</button> | |
</div> | |
</header> | |
<!-- Reports Section --> | |
<section id="reports" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Token Reports Library</h2> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Report Card 1 --> | |
<div class="report-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-4"> | |
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Quarterly</span> | |
<span class="text-gray-500 text-sm">January 2024</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Fabric Flow Fund Annual Report</h3> | |
<p class="text-gray-600 mb-4">Overview of Fabric Flow Fund performance, and financial position for Q4 2024.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-medium">FFFUND</span> | |
<a href="#" class="text-blue-600 hover:underline">Download PDF</a> | |
</div> | |
</div> | |
</div> | |
<!-- Report Card 2 --> | |
<div class="report-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-4"> | |
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Annual</span> | |
<span class="text-gray-500 text-sm">2022</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Bitcoin Network Annual Report</h3> | |
<p class="text-gray-600 mb-4">Complete analysis of Bitcoin's 2022 performance including mining statistics, adoption metrics, and treasury.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-medium">BTC</span> | |
<a href="#" class="text-blue-600 hover:underline">Download PDF</a> | |
</div> | |
</div> | |
</div> | |
<!-- Report Card 3 --> | |
<div class="report-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex justify-between items-start mb-4"> | |
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">Audit</span> | |
<span class="text-gray-500 text-sm">May 2023</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Solana Foundation Treasury Audit</h3> | |
<p class="text-gray-600 mb-4">Independent auditor's report on Solana Foundation's treasury holdings and financial statements.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-medium">SOL</span> | |
<a href="#" class="text-blue-600 hover:underline">Download PDF</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<button class="border border-blue-600 text-blue-600 font-medium px-6 py-2 rounded-full hover:bg-blue-50 transition"> | |
View All Reports | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Financial Information Section --> | |
<section id="financials" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Key Financial Information</h2> | |
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-12"> | |
<div class="p-6 md:p-8"> | |
<h3 class="text-2xl font-bold mb-6">Understanding Crypto Financial Reports</h3> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<div> | |
<h4 class="text-lg font-semibold mb-4 text-blue-600">Financial Statements</h4> | |
<p class="text-gray-600 mb-6"> | |
These provide a snapshot of the token project's financial position, including balance sheets, income statements, and cash flow statements. | |
For crypto projects, this often includes treasury holdings, token allocation, and burn rates. | |
</p> | |
<h4 class="text-lg font-semibold mb-4 text-blue-600">Auditor's Report</h4> | |
<p class="text-gray-600"> | |
A statement from an independent auditor confirming the accuracy and reliability of the financial statements. | |
Especially important for projects with significant treasury holdings. | |
</p> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4 text-blue-600">Management Discussion (MD&A)</h4> | |
<p class="text-gray-600 mb-6"> | |
A section that discusses the project's financial performance, highlights key events, and provides insights into future prospects. | |
Includes network upgrades, adoption metrics, and development milestones. | |
</p> | |
<h4 class="text-lg font-semibold mb-4 text-blue-600">Non-Financial Information</h4> | |
<p class="text-gray-600"> | |
Information about the project's strategy, operations, governance structure, and risk factors. | |
Includes developer activity, community growth, and regulatory compliance. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<div class="bg-white p-6 rounded-xl shadow-sm"> | |
<div class="text-blue-600 mb-4"> | |
<i class="fas fa-chart-line text-3xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Transparency</h4> | |
<p class="text-gray-600 text-sm">Corporate reports provide a transparent view of the project's performance to stakeholders.</p> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-sm"> | |
<div class="text-blue-600 mb-4"> | |
<i class="fas fa-hand-holding-usd text-3xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Investor Relations</h4> | |
<p class="text-gray-600 text-sm">They help investors assess the project's financial health and make informed decisions.</p> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-sm"> | |
<div class="text-blue-600 mb-4"> | |
<i class="fas fa-balance-scale text-3xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Compliance</h4> | |
<p class="text-gray-600 text-sm">They ensure that projects comply with emerging crypto reporting regulations.</p> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-sm"> | |
<div class="text-blue-600 mb-4"> | |
<i class="fas fa-users text-3xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Stakeholder Engagement</h4> | |
<p class="text-gray-600 text-sm">They provide information to developers, users, and the public about the project's operations.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Governance Section --> | |
<section id="governance" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Governance & Compliance</h2> | |
<div class="max-w-4xl mx-auto"> | |
<div class="bg-blue-50 border-l-4 border-blue-600 p-6 mb-8 rounded-r-lg"> | |
<h3 class="font-bold text-lg mb-2">Why Governance Matters in Crypto</h3> | |
<p class="text-gray-700"> | |
Decentralized governance is a cornerstone of many blockchain projects. Our reports include detailed information about governance structures, | |
voting mechanisms, and proposal histories to help you understand how decisions are made in each ecosystem. | |
</p> | |
</div> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<h4 class="font-bold mb-3">DAO Treasury Reports</h4> | |
<p class="text-gray-600 mb-4"> | |
Detailed breakdowns of decentralized autonomous organization treasuries, including asset allocation, spending proposals, and budget forecasts. | |
</p> | |
<ul class="text-gray-600 space-y-2"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>Token allocation and vesting schedules</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>Grant program expenditures</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>Ecosystem development funds</span> | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<h4 class="font-bold mb-3">Regulatory Compliance</h4> | |
<p class="text-gray-600 mb-4"> | |
Updates on regulatory compliance efforts, including licensing, jurisdictional analysis, and legal opinions. | |
</p> | |
<ul class="text-gray-600 space-y-2"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>Securities law compliance</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>Tax treatment guidance</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i> | |
<span>AML/KYC procedures</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="max-w-4xl mx-auto text-center"> | |
<h2 class="text-3xl font-bold mb-6">About CryptoInvestor Relations</h2> | |
<p class="text-gray-600 text-lg mb-8"> | |
We're an independent platform dedicated to bringing transparency to cryptocurrency projects through standardized reporting. | |
Our mission is to bridge the gap between traditional financial reporting standards and the emerging world of decentralized finance. | |
</p> | |
<div class="flex flex-wrap justify-center gap-4"> | |
<div class="bg-white p-6 rounded-lg shadow-sm text-center max-w-xs"> | |
<div class="text-blue-600 mb-3 mx-auto w-12 h-12 flex items-center justify-center bg-blue-50 rounded-full"> | |
<i class="fas fa-database text-xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Comprehensive Database</h4> | |
<p class="text-gray-600 text-sm">Hundreds of reports from top cryptocurrency projects</p> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm text-center max-w-xs"> | |
<div class="text-blue-600 mb-3 mx-auto w-12 h-12 flex items-center justify-center bg-blue-50 rounded-full"> | |
<i class="fas fa-check-circle text-xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Verified Information</h4> | |
<p class="text-gray-600 text-sm">All reports are vetted for accuracy and completeness</p> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm text-center max-w-xs"> | |
<div class="text-blue-600 mb-3 mx-auto w-12 h-12 flex items-center justify-center bg-blue-50 rounded-full"> | |
<i class="fas fa-bell text-xl"></i> | |
</div> | |
<h4 class="font-bold mb-2">Timely Updates</h4> | |
<p class="text-gray-600 text-sm">Get notified when new reports are published</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-12"> | |
<div class="container mx-auto px-4"> | |
<div class="grid md:grid-cols-4 gap-8 mb-8"> | |
<div> | |
<h4 class="font-bold text-lg mb-4">CryptoInvestor Relations</h4> | |
<p class="text-gray-400">Bringing transparency to cryptocurrency through standardized reporting.</p> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">Resources</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Report Guidelines</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Submission Process</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">API Documentation</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">Legal</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Disclaimer</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">Connect</h4> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter text-xl"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin text-xl"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-telegram text-xl"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github text-xl"></i></a> | |
</div> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 pt-8 text-center text-gray-400"> | |
<p>© 2023 CryptoInvestor Relations. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<!-- Floating Upload Button --> | |
<div class="fixed bottom-8 right-8 z-50"> | |
<div class="relative"> | |
<!-- Main Button --> | |
<button id="uploadBtn" class="floating-btn bg-blue-600 text-white w-14 h-14 rounded-full shadow-lg flex items-center justify-center focus:outline-none"> | |
<i class="fas fa-plus text-xl"></i> | |
</button> | |
<!-- Dropdown Content --> | |
<div id="uploadDropdown" class="dropdown-content bg-white rounded-lg p-4"> | |
<h3 class="font-bold mb-3 text-gray-800">Upload Report</h3> | |
<div class="mb-4"> | |
<label class="block text-gray-700 text-sm font-medium mb-1">Token</label> | |
<select class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
<option>Select Token</option> | |
<option>BTC - Bitcoin</option> | |
<option>ETH - Ethereum</option> | |
<option>BNB - Binance Coin</option> | |
<option>SOL - Solana</option> | |
<option>XRP - Ripple</option> | |
<option>ADA - Cardano</option> | |
<option>Other</option> | |
</select> | |
</div> | |
<div class="mb-4"> | |
<label class="block text-gray-700 text-sm font-medium mb-1">Report Type</label> | |
<select class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
<option>Select Type</option> | |
<option>Quarterly Report</option> | |
<option>Annual Report</option> | |
<option>Audit Report</option> | |
<option>Governance Report</option> | |
<option>Treasury Report</option> | |
<option>Other</option> | |
</select> | |
</div> | |
<div class="mb-4"> | |
<label class="block text-gray-700 text-sm font-medium mb-1">Report Date</label> | |
<input type="date" class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label class="block text-gray-700 text-sm font-medium mb-1">Upload File</label> | |
<div class="border-2 border-dashed border-gray-300 rounded p-4 text-center"> | |
<i class="fas fa-cloud-upload-alt text-gray-400 text-2xl mb-2"></i> | |
<p class="text-gray-500 text-sm">Drag & drop files here or click to browse</p> | |
<input type="file" class="hidden"> | |
</div> | |
</div> | |
<button class="w-full bg-blue-600 text-white py-2 rounded font-medium hover:bg-blue-700 transition"> | |
Submit Report | |
</button> | |
</div> | |
</div> | |
</div> | |
<script> | |
// Toggle upload dropdown | |
document.getElementById('uploadBtn').addEventListener('click', function() { | |
document.getElementById('uploadDropdown').classList.toggle('show-dropdown'); | |
}); | |
// Close dropdown when clicking outside | |
document.addEventListener('click', function(event) { | |
const uploadBtn = document.getElementById('uploadBtn'); | |
const uploadDropdown = document.getElementById('uploadDropdown'); | |
if (!uploadBtn.contains(event.target) && !uploadDropdown.contains(event.target)) { | |
uploadDropdown.classList.remove('show-dropdown'); | |
} | |
}); | |
// Token chip selection | |
const tokenChips = document.querySelectorAll('.token-chip'); | |
tokenChips.forEach(chip => { | |
chip.addEventListener('click', function() { | |
tokenChips.forEach(c => c.classList.remove('bg-blue-600', 'text-white')); | |
this.classList.add('bg-blue-600', 'text-white'); | |
// In a real app, you would filter reports by the selected token | |
}); | |
}); | |
// Store uploaded reports in localStorage | |
// This is a simplified version - in a real app you would have proper form handling | |
const reportForm = document.querySelector('#uploadDropdown'); | |
const submitBtn = reportForm.querySelector('button[type="button"]'); | |
submitBtn.addEventListener('click', function() { | |
const token = reportForm.querySelector('select:nth-of-type(1)').value; | |
const reportType = reportForm.querySelector('select:nth-of-type(2)').value; | |
const reportDate = reportForm.querySelector('input[type="date"]').value; | |
if (token && reportType && reportDate) { | |
// Get existing reports or initialize empty array | |
const reports = JSON.parse(localStorage.getItem('cryptoReports')) || []; | |
// Add new report (in a real app, you would handle file upload properly) | |
reports.push({ | |
token, | |
reportType, | |
reportDate, | |
timestamp: new Date().toISOString() | |
}); | |
// Save back to localStorage | |
localStorage.setItem('cryptoReports', JSON.stringify(reports)); | |
// Show success message | |
alert('Report submitted successfully!'); | |
// Hide dropdown | |
document.getElementById('uploadDropdown').classList.remove('show-dropdown'); | |
} else { | |
alert('Please fill in all fields'); | |
} | |
}); | |
</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/cryptorel-vbeta1-00" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |