Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Commodity-Backed Layer 2 Blockchain</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> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #f9f9f9; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%); | |
| } | |
| .commodity-card { | |
| transition: all 0.3s ease; | |
| border-left: 4px solid; | |
| } | |
| .commodity-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .energy-card { | |
| border-left-color: #f59e0b; | |
| } | |
| .agri-card { | |
| border-left-color: #10b981; | |
| } | |
| .metal-card { | |
| border-left-color: #6b7280; | |
| } | |
| .diagram-container { | |
| position: relative; | |
| height: 400px; | |
| } | |
| .diagram-step { | |
| position: absolute; | |
| width: 120px; | |
| text-align: center; | |
| transition: all 0.3s ease; | |
| } | |
| .diagram-step:hover { | |
| transform: scale(1.05); | |
| } | |
| .diagram-line { | |
| position: absolute; | |
| height: 2px; | |
| background-color: #d1d5db; | |
| top: 50%; | |
| } | |
| .animate-float { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| </style> | |
| </head> | |
| <body class="text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm py-4 sticky top-0 z-50"> | |
| <div class="container mx-auto px-6 flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 rounded-full bg-gradient-to-r from-amber-500 to-gray-600 flex items-center justify-center text-white font-bold">CB</div> | |
| <span class="font-semibold text-lg">CommodityBacked</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#problem" class="text-gray-600 hover:text-gray-900">Problem</a> | |
| <a href="#solution" class="text-gray-600 hover:text-gray-900">Solution</a> | |
| <a href="#consensus" class="text-gray-600 hover:text-gray-900">Consensus</a> | |
| <a href="#commodities" class="text-gray-600 hover:text-gray-900">Commodities</a> | |
| <a href="#zkp" class="text-gray-600 hover:text-gray-900">ZKP</a> | |
| <a href="#usecases" class="text-gray-600 hover:text-gray-900">Use Cases</a> | |
| </div> | |
| <button class="bg-amber-600 hover:bg-amber-700 text-white px-4 py-2 rounded-md font-medium transition-colors"> | |
| Whitepaper | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="gradient-bg py-20"> | |
| <div class="container mx-auto px-6 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Consensus Backed by Real-World Commodities</h1> | |
| <p class="text-xl text-gray-700 mb-8"> | |
| A Layer 2 blockchain secured by verifiable reserves of energy, agricultural grains, and industrial metals. | |
| Combining cryptographic security with real economic value. | |
| </p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="https://www.dropbox.com/scl/fi/vqbf1spsn8o16rpietnb2/whitepaper.pdf?rlkey=djedw9uo96msyhm9os7lw3e1p&st=s0er557m&dl=0"> | |
| <button class="bg-amber-600 hover:bg-amber-700 text-white px-6 py-3 rounded-md font-medium transition-colors"> | |
| Read the Whitepaper | |
| </button> | |
| </a> | |
| <button class="border border-gray-300 hover:border-gray-400 text-gray-700 px-6 py-3 rounded-md font-medium transition-colors"> | |
| Explore the Architecture | |
| </button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <div class="relative w-64 h-64 md:w-80 md:h-80"> | |
| <div class="absolute top-0 left-0 w-32 h-32 bg-amber-100 rounded-lg shadow-md animate-float" style="animation-delay: 0s;"></div> | |
| <div class="absolute bottom-0 right-0 w-32 h-32 bg-green-100 rounded-lg shadow-md animate-float" style="animation-delay: 1s;"></div> | |
| <div class="absolute top-1/4 right-1/4 w-32 h-32 bg-gray-100 rounded-lg shadow-md animate-float" style="animation-delay: 2s;"></div> | |
| <div class="absolute top-1/2 left-1/4 w-20 h-20 bg-white rounded-lg shadow-md flex items-center justify-center"> | |
| <i class="fas fa-link text-gray-600 text-2xl"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Problem Statement --> | |
| <section id="problem" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">The Limitations of Current Systems</h2> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto"></div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-sm"> | |
| <div class="w-12 h-12 bg-red-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-unlink text-red-500 text-xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Disconnected from Real Value</h3> | |
| <p class="text-gray-600"> | |
| Purely crypto-backed consensus lacks connection to real-world economic activity, creating volatility and speculative bubbles. | |
| </p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-sm"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-eye-slash text-purple-500 text-xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Opaque Auditing</h3> | |
| <p class="text-gray-600"> | |
| Traditional commodity markets rely on trusted third parties with limited transparency into actual reserves and holdings. | |
| </p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-sm"> | |
| <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-balance-scale text-blue-500 text-xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Inefficient Settlement</h3> | |
| <p class="text-gray-600"> | |
| Commodity trading and financing remain slow and expensive due to legacy systems and intermediaries. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Solution Overview --> | |
| <section id="solution" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <h2 class="text-3xl font-bold mb-6">Commodity-Backed Proof of Reserves</h2> | |
| <p class="text-gray-700 mb-6"> | |
| Our Layer 2 solution anchors consensus in verified physical commodities while maintaining cryptographic security guarantees. | |
| </p> | |
| <ul class="space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Tokenized commodities represent audited physical reserves with custodians | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Zero-knowledge proofs enable public verification without exposing sensitive data | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Validators stake commodity-backed tokens to participate in consensus | |
| </p> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <div class="diagram-container"> | |
| <div class="diagram-step" style="left: 0; top: 50%; transform: translateY(-50%);"> | |
| <div class="w-16 h-16 bg-amber-100 rounded-full mx-auto mb-2 flex items-center justify-center"> | |
| <i class="fas fa-box-open text-amber-600 text-2xl"></i> | |
| </div> | |
| <p class="text-sm font-medium">Physical Reserves</p> | |
| </div> | |
| <div class="diagram-step" style="left: 150px; top: 50%; transform: translateY(-50%);"> | |
| <div class="w-16 h-16 bg-green-100 rounded-full mx-auto mb-2 flex items-center justify-center"> | |
| <i class="fas fa-fingerprint text-green-600 text-2xl"></i> | |
| </div> | |
| <p class="text-sm font-medium">ZK Proof Generation</p> | |
| </div> | |
| <div class="diagram-step" style="left: 300px; top: 50%; transform: translateY(-50%);"> | |
| <div class="w-16 h-16 bg-blue-100 rounded-full mx-auto mb-2 flex items-center justify-center"> | |
| <i class="fas fa-link text-blue-600 text-2xl"></i> | |
| </div> | |
| <p class="text-sm font-medium">On-Chain Tokenization</p> | |
| </div> | |
| <div class="diagram-step" style="left: 450px; top: 50%; transform: translateY(-50%);"> | |
| <div class="w-16 h-16 bg-purple-100 rounded-full mx-auto mb-2 flex items-center justify-center"> | |
| <i class="fas fa-shield-alt text-purple-600 text-2xl"></i> | |
| </div> | |
| <p class="text-sm font-medium">Consensus Participation</p> | |
| </div> | |
| <div class="diagram-line" style="left: 80px; width: 70px;"></div> | |
| <div class="diagram-line" style="left: 230px; width: 70px;"></div> | |
| <div class="diagram-line" style="left: 380px; width: 70px;"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How Consensus Works --> | |
| <section id="consensus" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Commodity-Backed Consensus Mechanism</h2> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto"></div> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-10"> | |
| <div class="bg-gray-50 p-8 rounded-lg"> | |
| <h3 class="font-semibold text-xl mb-6 text-center">Traditional Proof-of-Stake</h3> | |
| <ul class="space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-gray-300"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Secured by crypto-native assets with no intrinsic value | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-gray-300"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Vulnerable to speculative attacks and volatility | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-gray-300"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Limited connection to real economic activity | |
| </p> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="bg-amber-50 p-8 rounded-lg border-l-4 border-amber-600"> | |
| <h3 class="font-semibold text-xl mb-6 text-center">Commodity-Backed Proof of Reserves</h3> | |
| <ul class="space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-amber-600"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Validators stake tokens backed by verifiable physical commodities | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-amber-600"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Regular ZK proofs verify reserves without exposing sensitive data | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 rounded-full bg-amber-600"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Anchored to real-world economic value and activity | |
| </p> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Supported Commodity Classes --> | |
| <section id="commodities" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Supported Commodity Classes</h2> | |
| <p class="text-gray-600 max-w-2xl mx-auto"> | |
| Diversified across energy, agriculture, and metals to create a stable economic foundation for consensus | |
| </p> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto mt-4"></div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="commodity-card energy-card bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-amber-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-bolt text-amber-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Energy</h3> | |
| <ul class="text-gray-600 space-y-2"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-amber-500 mr-2"></i> | |
| Crude oil & petroleum products | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-amber-500 mr-2"></i> | |
| Natural gas | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-amber-500 mr-2"></i> | |
| Electricity equivalents | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="commodity-card agri-card bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-wheat-awn text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Agriculture</h3> | |
| <ul class="text-gray-600 space-y-2"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| Wheat | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| Corn | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| Soybeans | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="commodity-card metal-card bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-gray-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-gem text-gray-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3">Metals</h3> | |
| <ul class="text-gray-600 space-y-2"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-gray-500 mr-2"></i> | |
| Gold | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-gray-500 mr-2"></i> | |
| Silver | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-gray-500 mr-2"></i> | |
| Copper & lithium | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Zero-Knowledge Proof of Reserves --> | |
| <section id="zkp" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <h2 class="text-3xl font-bold mb-6">Zero-Knowledge Proof of Reserves</h2> | |
| <p class="text-gray-700 mb-6"> | |
| Maintain privacy while proving solvency with cryptographic certainty. Our system enables: | |
| </p> | |
| <div class="bg-blue-50 p-6 rounded-lg mb-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-lock text-blue-600"></i> | |
| </div> | |
| </div> | |
| <div class="ml-3"> | |
| <h4 class="font-medium text-lg mb-2">Privacy-Preserving Audits</h4> | |
| <p class="text-gray-700"> | |
| Verify reserve adequacy without revealing quantities, locations, or counterparty information. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-purple-50 p-6 rounded-lg"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 bg-purple-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-shield-alt text-purple-600"></i> | |
| </div> | |
| </div> | |
| <div class="ml-3"> | |
| <h4 class="font-medium text-lg mb-2">Cryptographic Verification</h4> | |
| <p class="text-gray-700"> | |
| Replace trust in auditors with mathematical proofs of reserve adequacy. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-gray-50 p-8 rounded-lg"> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-user-secret text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-lg">Verifier</h3> | |
| <p class="text-gray-600 text-sm">Network participant</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center mb-6 ml-12"> | |
| <div class="flex-1 border-t-2 border-dashed border-gray-300"></div> | |
| <div class="mx-4 text-gray-500"> | |
| <i class="fas fa-arrow-down"></i> | |
| </div> | |
| <div class="flex-1 border-t-2 border-dashed border-gray-300"></div> | |
| </div> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-database text-green-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-lg">Proof Generation</h3> | |
| <p class="text-gray-600 text-sm">ZK-SNARK circuit</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center mb-6 ml-12"> | |
| <div class="flex-1 border-t-2 border-dashed border-gray-300"></div> | |
| <div class="mx-4 text-gray-500"> | |
| <i class="fas fa-arrow-down"></i> | |
| </div> | |
| <div class="flex-1 border-t-2 border-dashed border-gray-300"></div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-boxes text-amber-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-lg">Custodian</h3> | |
| <p class="text-gray-600 text-sm">Reserve holder</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why Layer 2 --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Why Layer 2 Architecture</h2> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto"></div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
| <i class="fas fa-tachometer-alt text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3 text-center">Scalability</h3> | |
| <p class="text-gray-600 text-center"> | |
| High-throughput settlement for commodity transactions without base layer congestion | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
| <i class="fas fa-coins text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3 text-center">Cost Efficiency</h3> | |
| <p class="text-gray-600 text-center"> | |
| Low transaction fees make small-value commodity transactions economically viable | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
| <i class="fas fa-shield-alt text-purple-600 text-2xl"></i> | |
| </div> | |
| <h3 class="font-semibold text-xl mb-3 text-center">Security</h3> | |
| <p class="text-gray-600 text-center"> | |
| Inherits Ethereum's security while enabling specialized commodity settlement logic | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Use Cases --> | |
| <section id="usecases" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Use Cases</h2> | |
| <p class="text-gray-600 max-w-2xl mx-auto"> | |
| Applications across commodity markets, trade finance, and institutional DeFi | |
| </p> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto mt-4"></div> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <div class="bg-gray-50 p-6 rounded-lg border-t-4 border-amber-600"> | |
| <h3 class="font-semibold text-lg mb-3">Commodity-Backed Stable Assets</h3> | |
| <p class="text-gray-600"> | |
| Price-stable tokens redeemable for physical commodities | |
| </p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg border-t-4 border-green-600"> | |
| <h3 class="font-semibold text-lg mb-3">Trade Settlement</h3> | |
| <p class="text-gray-600"> | |
| Instant cross-border settlement with proof of reserves | |
| </p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg border-t-4 border-blue-600"> | |
| <h3 class="font-semibold text-lg mb-3">Institutional DeFi</h3> | |
| <p class="text-gray-600"> | |
| Commodity-collateralized lending and derivatives | |
| </p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg border-t-4 border-gray-600"> | |
| <h3 class="font-semibold text-lg mb-3">Supply Chain Finance</h3> | |
| <p class="text-gray-600"> | |
| Transparent financing against verifiable inventory | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Security & Governance --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <h3 class="font-semibold text-xl mb-4">Validator Incentives</h3> | |
| <ul class="space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Staking rewards tied to real commodity value appreciation | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Slashing for invalid reserve proofs or malicious behavior | |
| </p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-5 h-5 bg-amber-600 rounded-full"></div> | |
| </div> | |
| <p class="ml-3 text-gray-700"> | |
| Governance weighted by commodity stake and expertise | |
| </p> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 md:pl-10"> | |
| <h2 class="text-3xl font-bold mb-6">Security & Governance</h2> | |
| <p class="text-gray-700 mb-6"> | |
| Our system aligns validator incentives with the long-term stability and growth of the underlying commodity economy. | |
| </p> | |
| <div class="bg-white p-6 rounded-lg shadow-sm mb-6"> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-handshake text-green-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-lg">Custodian Partnerships</h3> | |
| <p class="text-gray-600"> | |
| Working with regulated storage providers worldwide | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-search text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-lg">Auditor Network</h3> | |
| <p class="text-gray-600"> | |
| Independent verification of proof circuits and reserve claims | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Call to Action --> | |
| <section class="py-20 bg-gradient-to-r from-amber-600 to-amber-700 text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Join the Commodity-Backed Future</h2> | |
| <p class="text-xl mb-10 max-w-2xl mx-auto"> | |
| Be part of the next generation of blockchain infrastructure anchored in real-world value | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> | |
| <a href="https://www.dropbox.com/scl/fi/vqbf1spsn8o16rpietnb2/whitepaper.pdf?rlkey=djedw9uo96msyhm9os7lw3e1p&st=19x6lccq&dl=0"> | |
| <button class="bg-white text-amber-700 hover:bg-gray-100 px-8 py-4 rounded-md font-semibold transition-colors"> | |
| Download the Whitepaper | |
| </button> | |
| </a> | |
| <button class="border border-white hover:bg-amber-800 px-8 py-4 rounded-md font-semibold transition-colors"> | |
| Join as a Validator | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Partners --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-12"> | |
| <h3 class="text-lg font-medium text-gray-600 mb-2">TRUSTED BY INDUSTRY LEADERS</h3> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto"></div> | |
| </div> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
| <div class="w-32 h-16 bg-gray-100 rounded-lg flex items-center justify-center text-gray-400 font-bold">CUSTODIAN</div> | |
| <div class="w-32 h-16 bg-gray-100 rounded-lg flex items-center justify-center text-gray-400 font-bold">AUDITOR</div> | |
| <div class="w-32 h-16 bg-gray-100 rounded-lg flex items-center justify-center text-gray-400 font-bold">COMMODITY</div> | |
| <div class="w-32 h-16 bg-gray-100 rounded-lg flex items-center justify-center text-gray-400 font-bold">TRADING</div> | |
| <div class="w-32 h-16 bg-gray-100 rounded-lg flex items-center justify-center text-gray-400 font-bold">TECH</div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Frequently Asked Questions</h2> | |
| <div class="w-20 h-1 bg-amber-600 mx-auto"></div> | |
| </div> | |
| <div class="max-w-3xl mx-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-sm mb-4"> | |
| <button class="flex justify-between items-center w-full text-left font-medium"> | |
| <span>How does proof of reserves work with commodities?</span> | |
| <i class="fas fa-chevron-down text-amber-600"></i> | |
| </button> | |
| <div class="mt-4 text-gray-700 hidden"> | |
| Physical commodities are held with regulated custodians and regularly audited. These reserves are tokenized on-chain, with zero-knowledge proofs providing cryptographic verification that the reserves match the token supply without revealing sensitive commercial information. | |
| </div> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm mb-4"> | |
| <button class="flex justify-between items-center w-full text-left font-medium"> | |
| <span>What prevents counterfeit or double-counted reserves?</span> | |
| <i class="fas fa-chevron-down text-amber-600"></i> | |
| </button> | |
| <div class="mt-4 text-gray-700 hidden"> | |
| Our system uses a combination of cryptographic attestations from custodians, physical audits, and on-chain verification. Each commodity unit is uniquely identified and cannot be double-counted across different validators or custodians. | |
| </div> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm mb-4"> | |
| <button class="flex justify-between items-center w-full text-left font-medium"> | |
| <span>How is price volatility in commodities handled?</span> | |
| <i class="fas fa-chevron-down text-amber-600"></i> | |
| </button> | |
| <div class="mt-4 text-gray-700 hidden"> | |
| The protocol maintains over-collateralization requirements that adjust based on market conditions. Additionally, the diversified basket approach reduces exposure to any single commodity's price movements. | |
| </div> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <button class="flex justify-between items-center w-full text-left font-medium"> | |
| <span>Can anyone become a validator?</span> | |
| <i class="fas fa-chevron-down text-amber-600"></i> | |
| </button> | |
| <div class="mt-4 text-gray-700 hidden"> | |
| Validators must stake commodity-backed tokens, which requires either holding physical commodities or acquiring tokens from those who do. There are also reputation requirements to ensure validators understand commodity markets. | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <div class="w-8 h-8 rounded-full bg-gradient-to-r from-amber-500 to-gray-600 flex items-center justify-center text-white font-bold">CB</div> | |
| <span class="font-semibold">CommodityBacked</span> | |
| </div> | |
| <p class="text-gray-400"> | |
| Building blockchain infrastructure anchored in real-world value | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-lg mb-4">Technology</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Whitepaper</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">GitHub</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Roadmap</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-lg mb-4">Ecosystem</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Validators</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Partners</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Grants</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold text-lg mb-4">Connect</h4> | |
| <div class="flex space-x-4 mb-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700"> | |
| <i class="fab fa-telegram-plane"></i> | |
| </a> | |
| </div> | |
| <p class="text-gray-400">contact@commoditybacked.net</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 CommodityBacked Network. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white">Cookies</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // FAQ toggle functionality | |
| document.querySelectorAll('footer button').forEach(button => { | |
| button.addEventListener('click', () => { | |
| const answer = button.nextElementSibling; | |
| answer.classList.toggle('hidden'); | |
| const icon = button.querySelector('i'); | |
| if (answer.classList.contains('hidden')) { | |
| icon.classList.remove('fa-chevron-up'); | |
| icon.classList.add('fa-chevron-down'); | |
| } else { | |
| icon.classList.remove('fa-chevron-down'); | |
| icon.classList.add('fa-chevron-up'); | |
| } | |
| }); | |
| }); | |
| // Smooth scrolling for navigation | |
| document.querySelectorAll('nav a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| </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=alphonse86/commoditybacked" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |