securetamperpos / index.html
divid29's picture
<!doctype html>
b69974d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SecureTamperPOS</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.hero-gradient {
background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
}
</style>
</head>
<body class="bg-gray-50">
<header class="hero-gradient text-white relative overflow-hidden">
<div class="absolute inset-0 bg-black/30"></div>
<div class="container mx-auto px-6 py-24 relative z-10">
<div class="max-w-3xl">
<div class="flex items-center gap-4 mb-6">
<div class="w-14 h-14 rounded-xl bg-white/20 backdrop-blur-sm p-2">
<img src="http://static.photos/technology/200x200/5" alt="POS Icon" class="w-full h-full object-contain">
</div>
<h1 class="text-4xl font-bold">SecureTamperPOS πŸ”πŸ›’</h1>
</div>
<p class="text-xl mb-8">Tamper-proof Point of Sale with cryptographic receipts and sensor security</p>
<div class="flex gap-4">
<a href="#features" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition">Explore Features</a>
<a href="#" class="border border-white px-6 py-3 rounded-lg font-medium hover:bg-white/10 transition">Live Demo</a>
</div>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-16 bg-gradient-to-t from-gray-50 to-transparent"></div>
</header>
<section id="features" class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-6">Featured Capabilities</h2>
<p class="text-xl text-center text-gray-600 mb-12">Secure transactions with end-to-end cryptographic protection</p>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-xl hover:shadow-2xl transition">
<div class="text-indigo-600 mb-4">
<div class="w-16 h-16 rounded-full bg-indigo-50 flex items-center justify-center">
<i data-feather="shield" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-bold mb-3">Cryptographic Receipts</h3>
<p class="text-gray-600">Digitally signed receipts using ECDSA/EdDSA with device-bound keys stored in hardware-backed keystore.</p>
<img src="http://static.photos/technology/640x360/12" alt="Digital Signature" class="mt-6 rounded-lg">
</div>
<div class="bg-white p-8 rounded-xl shadow-xl hover:shadow-2xl transition">
<div class="text-indigo-600 mb-4">
<div class="w-16 h-16 rounded-full bg-indigo-50 flex items-center justify-center">
<i data-feather="cpu" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-bold mb-3">Tamper Detection</h3>
<p class="text-gray-600">Monitor reed switches, hall effect sensors, and accelerometers to detect physical tampering events.</p>
<img src="http://static.photos/technology/640x360/23" alt="Tamper Detection" class="mt-6 rounded-lg">
</div>
<div class="bg-white p-8 rounded-xl shadow-xl hover:shadow-2xl transition">
<div class="text-indigo-600 mb-4">
<div class="w-16 h-16 rounded-full bg-indigo-50 flex items-center justify-center">
<i data-feather="database" class="w-8 h-8"></i>
</div>
</div>
<h3 class="text-xl font-bold mb-3">Encrypted Storage</h3>
<p class="text-gray-600">Local encrypted database stores receipts securely with SQLCipher or EncryptedSharedPreferences.</p>
<img src="http://static.photos/technology/640x360/34" alt="Encrypted Storage" class="mt-6 rounded-lg">
</div>
</div>
</div>
</section>
<section class="bg-gray-100 py-20 relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-r from-indigo-100/20 to-purple-100/20"></div>
<div class="container mx-auto px-6 relative z-10">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<div class="relative">
<img src="http://static.photos/technology/640x360/42" alt="POS Device" class="rounded-xl shadow-2xl">
<div class="absolute -bottom-6 -right-6 w-32 h-32 rounded-full bg-white shadow-xl flex items-center justify-center">
<img src="http://static.photos/technology/200x200/7" alt="QR Code" class="w-24 h-24">
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold mb-6">Offline-First Architecture</h2>
<p class="mb-6 text-gray-700">Designed for environments with intermittent connectivity, with secure sync capabilities when online.</p>
<ul class="space-y-4">
<li class="flex items-start">
<div class="w-8 h-8 rounded-full bg-green-100 flex items-center justify-center mr-3">
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<span class="text-gray-700">Offline QR code verification with bundled issuer keys</span>
</li>
<li class="flex items-start">
<div class="w-8 h-8 rounded-full bg-green-100 flex items-center justify-center mr-3">
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<span class="text-gray-700">Local encrypted receipt storage</span>
</li>
<li class="flex items-start">
<div class="w-8 h-8 rounded-full bg-green-100 flex items-center justify-center mr-3">
<i data-feather="check-circle" class="text-green-500"></i>
</div>
<span class="text-gray-700">Secure sync when connectivity available</span>
</li>
</ul>
<div class="mt-8">
<img src="http://static.photos/technology/640x360/56" alt="Sync Diagram" class="rounded-lg">
</div>
</div>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-4 gap-12">
<div>
<h3 class="text-xl font-bold mb-4">SecureTamperPOS</h3>
<p class="text-gray-400 mb-4">Tamper-proof receipts for critical transactions</p>
<img src="http://static.photos/technology/320x240/8" alt="POS Device" class="rounded-lg mb-4">
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition">
<i data-feather="github" class="w-5 h-5"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-600 transition">
<i data-feather="mail" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h4 class="font-bold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Roadmap</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">API Reference</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Legal</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>Β© 2023 SecureTamperPOS. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>