| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>About | IPv6 Explorer Deluxe</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); |
| body { |
| font-family: 'Space Grotesk', sans-serif; |
| } |
| .glass-card { |
| backdrop-filter: blur(16px) saturate(180%); |
| -webkit-backdrop-filter: blur(16px) saturate(180%); |
| background-color: rgba(17, 25, 40, 0.75); |
| border-radius: 12px; |
| border: 1px solid rgba(255, 255, 255, 0.125); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-900 text-white min-h-screen"> |
| <div id="vanta-bg" class="fixed inset-0 -z-10"></div> |
| |
| <header class="container mx-auto px-4 py-8"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center space-x-2"> |
| <i data-feather="globe" class="w-8 h-8 text-indigo-400"></i> |
| <h1 class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-indigo-400 to-purple-500">About IPv6 Explorer</h1> |
| </div> |
| <nav> |
| <ul class="flex space-x-6"> |
| <li><a href="index.html" class="hover:text-indigo-300 transition">Home</a></li> |
| <li><a href="tester.html" class="hover:text-indigo-300 transition">Tester</a></li> |
| <li><a href="about.html" class="hover:text-indigo-300 transition font-semibold text-indigo-300">About</a></li> |
| </ul> |
| </nav> |
| </div> |
| </header> |
|
|
| <main class="container mx-auto px-4 py-8"> |
| <section class="glass-card p-8 mb-8 max-w-3xl mx-auto"> |
| <h2 class="text-2xl font-bold mb-6">About IPv6 Explorer Deluxe</h2> |
| <div class="space-y-4 text-gray-300"> |
| <p>IPv6 Explorer Deluxe is a comprehensive toolset for testing and analyzing IPv6 connectivity and readiness.</p> |
| <p>Our platform provides:</p> |
| <ul class="list-disc ml-6 space-y-2"> |
| <li>Quick IPv6 connectivity checks</li> |
| <li>Detailed network configuration analysis</li> |
| <li>Advanced testing tools for network administrators</li> |
| <li>Educational resources about IPv6 transition</li> |
| </ul> |
| <p>The tool runs entirely client-side in your browser - no data is collected or stored on our servers.</p> |
| <div class="pt-4 mt-4 border-t border-gray-700"> |
| <h3 class="text-xl font-semibold mb-3">Version Information</h3> |
| <p class="text-sm">Version 1.2.0</p> |
| <p class="text-sm">Released: June 2023</p> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <footer class="container mx-auto px-4 py-8 text-center text-gray-400"> |
| <p>© 2023 IPv6 Explorer Deluxe. All rights reserved.</p> |
| </footer> |
|
|
| <script> |
| feather.replace(); |
| |
| |
| VANTA.NET({ |
| el: "#vanta-bg", |
| color: 0x5b21b6, |
| backgroundColor: 0x111827, |
| points: 15, |
| maxDistance: 20, |
| spacing: 15 |
| }); |
| </script> |
| </body> |
| </html> |