verisource / index.html
alphonse86's picture
Add 2 files
4686e8b verified
Raw
History Blame Contribute Delete
32.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VeriSource | Cryptographic Software Provenance</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, #f9fafb 0%, #f3f4f6 100%);
}
.code-block {
font-family: 'Courier New', monospace;
background-color: #f8fafc;
border-left: 3px solid #3b82f6;
padding: 1rem;
margin: 1rem 0;
}
.diagram-container {
position: relative;
height: 200px;
margin: 2rem 0;
}
.diagram-line {
position: absolute;
height: 2px;
background-color: #3b82f6;
top: 50%;
left: 0;
right: 0;
}
.diagram-node {
position: absolute;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: white;
border: 2px solid #3b82f6;
display: flex;
align-items: center;
justify-content: center;
top: calc(50% - 20px);
}
.diagram-node i {
color: #3b82f6;
}
.diagram-text {
position: absolute;
text-align: center;
width: 120px;
font-size: 0.875rem;
color: #4b5563;
}
.hover-scale {
transition: transform 0.2s ease-in-out;
}
.hover-scale:hover {
transform: scale(1.02);
}
</style>
</head>
<body class="gradient-bg font-sans text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<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">
<span class="text-xl font-bold text-gray-800">VeriSource</span>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8">
<a href="#problem" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Problem</a>
<a href="#solution" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Solution</a>
<a href="#how-it-works" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">How It Works</a>
<a href="#use-cases" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Use Cases</a>
<a href="#contact" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<a href="#" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Request Demo
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
Cryptographically Verifiable <br>Software History
</h1>
<p class="text-xl md:text-2xl text-gray-600 max-w-3xl mx-auto mb-10">
Prove — in zero knowledge — that your code, builds, and artifacts come from exactly the source you claim. No trust in CI providers. No source disclosure. Just math.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10">
Request a Demo
</a>
<a href="#" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-blue-100 hover:bg-blue-200 md:py-4 md:text-lg md:px-10">
Read the White Paper
</a>
</div>
</div>
</div>
<!-- Problem Section -->
<div id="problem" class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">The Software Supply Chain Is a Trust Problem</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Current systems rely on process rather than cryptographic proof, leaving critical gaps in verification.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center">
<div>
<ul class="space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-exclamation-circle"></i>
</div>
<p class="ml-3 text-gray-700">
Git hashes verify history, but not the integrity of builds or artifacts
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-exclamation-circle"></i>
</div>
<p class="ml-3 text-gray-700">
CI pipelines require blind trust in operators and infrastructure
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-exclamation-circle"></i>
</div>
<p class="ml-3 text-gray-700">
Closed-source components break transparency while open-source risks exposure
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-exclamation-circle"></i>
</div>
<p class="ml-3 text-gray-700">
Audits rely on manual processes rather than cryptographic proof
</p>
</li>
</ul>
</div>
<div class="diagram-container">
<div class="diagram-line"></div>
<div class="diagram-node" style="left: 10%;">
<i class="fas fa-code"></i>
</div>
<div class="diagram-text" style="left: 5%; top: 60%;">Source</div>
<div class="diagram-node" style="left: 30%;">
<i class="fas fa-server"></i>
</div>
<div class="diagram-text" style="left: 25%; top: 60%;">CI System</div>
<div class="diagram-node" style="left: 50%;">
<i class="fas fa-cube"></i>
</div>
<div class="diagram-text" style="left: 45%; top: 60%;">Binary</div>
<div class="diagram-node" style="left: 70%;">
<i class="fas fa-user-shield"></i>
</div>
<div class="diagram-text" style="left: 65%; top: 60%;">Trust</div>
<div class="diagram-node" style="left: 90%;">
<i class="fas fa-question"></i>
</div>
<div class="diagram-text" style="left: 85%; top: 60%;">?</div>
</div>
</div>
</div>
</div>
<!-- Solution Section -->
<div id="solution" class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Zero-Knowledge Proofs for Version Control</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Cryptographic guarantees without compromising privacy or security.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center">
<div>
<div class="code-block">
<span class="text-blue-600">commit</span> 1a2b3c4d<br>
<span class="text-blue-600">proof</span> zk-SNARK<br>
<span class="text-blue-600">verify</span> true
</div>
</div>
<div>
<ul class="space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-3 text-gray-700">
Maintains standard Git workflows (SHA-256) while adding cryptographic proofs
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-3 text-gray-700">
ZK proofs cryptographically link commit → history → build → artifact
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-6 w-6 text-blue-600 mt-1">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-3 text-gray-700">
Proofs reveal nothing about private code or build internals
</p>
</li>
</ul>
</div>
</div>
<div class="mt-16 text-center">
<div class="inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50">
<i class="fas fa-arrow-down mr-2"></i>
Commit → Proof → Artifact
</div>
</div>
</div>
</div>
<!-- How It Works Section -->
<div id="how-it-works" class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">How VeriSource Works</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Cryptographic verification at each stage of the software lifecycle.
</p>
</div>
<div class="grid md:grid-cols-4 gap-8">
<div class="hover-scale bg-gray-50 p-6 rounded-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-anchor"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">1. Commit Anchoring</h3>
<p class="text-gray-600">
Commits are verified as belonging to a known repository history with cryptographic proofs.
</p>
</div>
<div class="hover-scale bg-gray-50 p-6 rounded-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-cogs"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">2. Deterministic Build Proofs</h3>
<p class="text-gray-600">
Prove the artifact was built from that commit with specific constraints and dependencies.
</p>
</div>
<div class="hover-scale bg-gray-50 p-6 rounded-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-vial"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">3. Test Verification</h3>
<p class="text-gray-600">
Prove tests executed and passed — without exposing tests or logs.
</p>
</div>
<div class="hover-scale bg-gray-50 p-6 rounded-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">4. Verifiable Artifact</h3>
<p class="text-gray-600">
Ship binaries with cryptographic proofs anyone can verify independently.
</p>
</div>
</div>
</div>
</div>
<!-- Use Cases Section -->
<div id="use-cases" class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Built for High-Assurance Software</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Where cryptographic verification matters most.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="hover-scale bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-link"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Supply-Chain Security</h3>
<p class="text-gray-600 text-sm">
Prevent CI compromise and malicious injection with cryptographic proofs.
</p>
</div>
<div class="hover-scale bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-lock"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Hybrid Open/Closed Source</h3>
<p class="text-gray-600 text-sm">
Prove open-source inclusion while protecting proprietary IP.
</p>
</div>
<div class="hover-scale bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-building"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Regulated Industries</h3>
<p class="text-gray-600 text-sm">
Replace audits and attestations with cryptographic proofs for compliance.
</p>
</div>
<div class="hover-scale bg-white p-6 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-project-diagram"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">On-Chain & Critical Deployments</h3>
<p class="text-gray-600 text-sm">
Prove deployed code matches reviewed source without disclosure.
</p>
</div>
</div>
</div>
</div>
<!-- Why ZK Section -->
<div class="bg-gray-900 text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Trust the Proof, Not the Process</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Zero-knowledge cryptography provides verifiable trust without compromise.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white mx-auto mb-4">
<i class="fas fa-user-secret"></i>
</div>
<h3 class="text-lg font-medium mb-2">No CI Trust</h3>
<p class="text-gray-300 text-sm">
Eliminate reliance on CI operators and infrastructure.
</p>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white mx-auto mb-4">
<i class="fas fa-eye-slash"></i>
</div>
<h3 class="text-lg font-medium mb-2">Source Protection</h3>
<p class="text-gray-300 text-sm">
No source code disclosure required for verification.
</p>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white mx-auto mb-4">
<i class="fas fa-key"></i>
</div>
<h3 class="text-lg font-medium mb-2">No Secret Leakage</h3>
<p class="text-gray-300 text-sm">
Proofs contain zero knowledge about sensitive data.
</p>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white mx-auto mb-4">
<i class="fas fa-check-double"></i>
</div>
<h3 class="text-lg font-medium mb-2">Verifiable Forever</h3>
<p class="text-gray-300 text-sm">
Proofs remain valid indefinitely with no ongoing trust.
</p>
</div>
</div>
</div>
</div>
<!-- Philosophy Section -->
<div class="bg-white py-16">
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-2xl font-bold text-gray-900 mb-6">Proof-First Software</h2>
<p class="text-lg text-gray-600 italic">
"Signatures prove identity. Logs prove nothing. Proofs prove correctness. We believe the future of software trust is cryptographic, not procedural."
</p>
</div>
</div>
<!-- Contact Section -->
<div id="contact" class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="bg-white shadow rounded-lg overflow-hidden">
<div class="grid md:grid-cols-2">
<div class="p-8 sm:p-10">
<h2 class="text-2xl font-bold text-gray-900 mb-2">See It in Action</h2>
<p class="text-lg text-gray-600 mb-6">Schedule a technical walkthrough or research discussion.</p>
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Name</label>
<input type="text" id="name" name="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="company" class="block text-sm font-medium text-gray-700">Company</label>
<input type="text" id="company" name="company" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" id="email" name="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="role" class="block text-sm font-medium text-gray-700">Role</label>
<select id="role" name="role" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
<option>Security Engineer</option>
<option>Infrastructure Engineer</option>
<option>CTO/Technical Founder</option>
<option>Compliance Officer</option>
<option>Other</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message (optional)</label>
<textarea id="message" name="message" rows="3" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"></textarea>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Schedule Demo
</button>
</div>
</form>
</div>
<div class="bg-gray-50 p-8 sm:p-10 flex items-center">
<div>
<h3 class="text-lg font-medium text-gray-900 mb-4">Early access available for:</h3>
<ul class="space-y-3">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-blue-600 mt-1">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-gray-700">
Security-critical software teams
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-blue-600 mt-1">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-gray-700">
Regulated industry deployments
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-blue-600 mt-1">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-gray-700">
Cryptographic research partners
</p>
</li>
</ul>
<div class="mt-8 pt-8 border-t border-gray-200">
<h3 class="text-lg font-medium text-gray-900 mb-4">Technical Resources</h3>
<div class="space-y-3">
<a href="#" class="flex items-center text-blue-600 hover:text-blue-800">
<i class="fas fa-file-pdf mr-2"></i>
<span>White Paper (PDF)</span>
</a>
<a href="#" class="flex items-center text-blue-600 hover:text-blue-800">
<i class="fab fa-github mr-2"></i>
<span>Research Repository</span>
</a>
<a href="#" class="flex items-center text-blue-600 hover:text-blue-800">
<i class="fas fa-book mr-2"></i>
<span>Technical Documentation</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-medium mb-4">VeriSource</h3>
<p class="text-gray-400 text-sm">
Cryptographic software provenance for high-assurance systems.
</p>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#problem" class="text-gray-400 hover:text-white text-sm">Problem</a></li>
<li><a href="#solution" class="text-gray-400 hover:text-white text-sm">Solution</a></li>
<li><a href="#how-it-works" class="text-gray-400 hover:text-white text-sm">How It Works</a></li>
<li><a href="#use-cases" class="text-gray-400 hover:text-white text-sm">Use Cases</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm">White Paper</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">GitHub</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Contact</h3>
<ul class="space-y-2">
<li><a href="mailto:contact@verisource.dev" class="text-gray-400 hover:text-white text-sm">contact@verisource.dev</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">Security</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm">Careers</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">
© 2023 VeriSource. All rights reserved.
</p>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Form submission handling
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your interest. We will contact you shortly.');
this.reset();
});
}
</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/verisource" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>