Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Database Mind Meld - Understanding Database Relationships</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="components/invoice-erd.js"></script> | |
| </head> | |
| <body class="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-indigo-900 mb-4">Database Mind Meld 🧠</h1> | |
| <p class="text-xl text-indigo-700 max-w-2xl mx-auto">Visualizing the complex relationships swimming through a developer's mind</p> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden"> | |
| <div class="relative"> | |
| <img src="http://static.photos/technology/1024x576/42" alt="Developer thinking about database relationships" class="w-full h-64 md:h-96 object-cover"> | |
| <div class="absolute inset-0 bg-indigo-900 bg-opacity-30 flex items-center justify-center"> | |
| <i data-feather="cpu" class="w-16 h-16 text-white opacity-80"></i> | |
| </div> | |
| </div> | |
| <div class="p-6 md:p-8"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-indigo-100 p-3 rounded-full mr-4"> | |
| <i data-feather="database" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| <h2 class="text-2xl font-bold text-gray-800">How Database Relationships Work</h2> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-6"> | |
| <div class="bg-indigo-50 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="link" class="text-indigo-600 mr-3"></i> | |
| <h3 class="font-bold text-indigo-900">One-to-One</h3> | |
| </div> | |
| <p class="text-gray-700">Like a person and their fingerprint - unique and exclusive relationships between tables.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <invoice-erd></invoice-erd> | |
| <script src="https://deepsite.hf.co/deepsite-badge.js"></script> | |
| </body> | |
| </html> |