Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>DRMInsight Pro - System Architecture</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> | |
| </head> | |
| <body class="bg-gray-900 text-white"> | |
| <!-- Navigation --> | |
| <nav class="bg-gray-800 bg-opacity-80 backdrop-blur-sm border-b border-gray-700 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"> | |
| <a href="/" class="flex items-center"> | |
| <i data-feather="shield" class="text-primary-500 mr-2"></i> | |
| <span class="text-xl font-bold text-primary-400">DRMInsight Pro</span> | |
| </a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <a href="/" class="text-gray-300 hover:text-primary-400 transition-colors">Home</a> | |
| <a href="/architecture.html" class="text-primary-400">Architecture</a> | |
| <a href="/pricing.html" class="text-gray-300 hover:text-primary-400 transition-colors">Pricing</a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Architecture Content --> | |
| <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
| <h1 class="text-4xl font-bold text-primary-400 mb-8">System Architecture</h1> | |
| <section class="mb-12"> | |
| <h2 class="text-2xl font-bold text-primary-300 mb-6">Modern Stack Overview</h2> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="border border-primary-500 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="monitor" class="text-primary-400 mr-2"></i> | |
| <h3 class="text-xl font-semibold">Frontend</h3> | |
| </div> | |
| <ul class="text-gray-300 space-y-2"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| React/Vue/Svelte | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Zustand/Pinia Stores | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| TypeScript | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Vite Build System | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="border border-primary-500 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="server" class="text-primary-400 mr-2"></i> | |
| <h3 class="text-xl font-semibold">Backend</h3> | |
| </div> | |
| <ul class="text-gray-300 space-y-2"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Node.js + Express | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| JWT Authentication | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| REST + WebSocket APIs | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Rate Limiting | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="border border-primary-500 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="database" class="text-primary-400 mr-2"></i> | |
| <h3 class="text-xl font-semibold">Database</h3> | |
| </div> | |
| <ul class="text-gray-300 space-y-2"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| PostgreSQL | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Redis Cache | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Prisma ORM | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-green-400 mr-2 mt-1 w-4"></i> | |
| Daily Backups | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <section class="mb-12"> | |
| <h2 class="text-2xl font-bold text-primary-300 mb-6">Cloud Deployment</h2> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-semibold mb-4">Frontend Hosting</h3> | |
| <div class="flex items-start mb-4"> | |
| <i data-feather="cloud" class="text-blue-400 mr-3 mt-1"></i> | |
| <div> | |
| <h4 class="font-medium">Vercel Edge Network</h4> | |
| <p class="text-gray-400 text-sm">Global CDN with instant cache invalidation</p> | |
| </div> | |
| </div> | |
| <ul class="text-gray-300 space-y-2 pl-8"> | |
| <li>Automatic CI/CD from GitHub</li> | |
| <li>Preview deployments for all PRs</li> | |
| <li>Image optimization</li> | |
| <li>DDoS protection</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-semibold mb-4">Backend Services</h3> | |
| <div class="flex items-start mb-4"> | |
| <i data-feather="hard-drive" class="text-blue-400 mr-3 mt-1"></i> | |
| <div> | |
| <h4 class="font-medium">AWS ECS + Fargate</h4> | |
| <p class="text-gray-400 text-sm">Containerized microservices</p> | |
| </div> | |
| </div> | |
| <ul class="text-gray-300 space-y-2 pl-8"> | |
| <li>Auto-scaling based on load</li> | |
| <li>Multi-region deployment</li> | |
| <li>Managed PostgreSQL RDS</li> | |
| <li>Redis Elasticache</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <section class="mb-12"> | |
| <h2 class="text-2xl font-bold text-primary-300 mb-6">API Architecture</h2> | |
| <div class="bg-gray-800 rounded-xl p-6 overflow-x-auto"> | |
| <img src="http://static.photos/technology/1200x630/42" alt="API Architecture Diagram" class="rounded-lg border border-gray-700"> | |
| <div class="mt-4 text-gray-400 text-sm"> | |
| <p>Our API follows RESTful principles with JSON payloads and uses WebSockets for real-time updates.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <section> | |
| <h2 class="text-2xl font-bold text-primary-300 mb-6">Security Layers</h2> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="border border-gray-700 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="lock" class="text-red-400 mr-2"></i> | |
| <h3 class="text-lg font-semibold">Authentication</h3> | |
| </div> | |
| <ul class="text-gray-300 text-sm space-y-2"> | |
| <li>OAuth 2.0 + OpenID Connect</li> | |
| <li>JWT with short expiration</li> | |
| <li>Refresh token rotation</li> | |
| <li>Multi-factor auth (SMS/OTP)</li> | |
| </ul> | |
| </div> | |
| <div class="border border-gray-700 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="shield" class="text-red-400 mr-2"></i> | |
| <h3 class="text-lg font-semibold">Data Protection</h3> | |
| </div> | |
| <ul class="text-gray-300 text-sm space-y-2"> | |
| <li>Encryption at rest (AES-256)</li> | |
| <li>Encryption in transit (TLS 1.3)</li> | |
| <li>Field-level encryption</li> | |
| <li>Regular key rotation</li> | |
| </ul> | |
| </div> | |
| <div class="border border-gray-700 rounded-lg p-4"> | |
| <div class="flex items-center mb-3"> | |
| <i data-feather="eye-off" class="text-red-400 mr-2"></i> | |
| <h3 class="text-lg font-semibold">Monitoring</h3> | |
| </div> | |
| <ul class="text-gray-300 text-sm space-y-2"> | |
| <li>SIEM integration</li> | |
| <li>Anomaly detection</li> | |
| <li>Audit logging</li> | |
| <li>GDPR compliance</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <footer class="bg-gray-800 border-t border-gray-700 py-8"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <p class="text-gray-400"> | |
| DRMInsight Pro Architecture - Version 2.0 | |
| </p> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |