| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>DataOps Dashboard</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> |
| <style> |
| .hero-gradient { |
| background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%); |
| } |
| .card-hover:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .transition-smooth { |
| transition: all 0.3s ease; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50 font-sans antialiased"> |
| |
| <div id="hero" class="hero-gradient text-white pt-24 pb-32 relative overflow-hidden"> |
| <div class="absolute inset-0 z-0" id="vanta-globe"></div> |
| <div class="container mx-auto px-6 relative z-10"> |
| <div class="flex flex-col lg:flex-row items-center justify-between"> |
| <div class="lg:w-1/2 mb-12 lg:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">Modern DataOps <br> Solutions</h1> |
| <p class="text-xl mb-8 opacity-90">Streamline your data workflows with our powerful platform designed for efficiency and scalability.</p> |
| <div class="flex flex-col sm:flex-row gap-4"> |
| <button class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-blue-50 transition-smooth">Get Started</button> |
| <button class="border-2 border-white text-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition-smooth">Learn More</button> |
| </div> |
| </div> |
| <div class="lg:w-1/2 flex justify-center"> |
| <img src="http://static.photos/technology/640x360/42" alt="Data Visualization" class="rounded-xl shadow-2xl border-8 border-white border-opacity-20"> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <span class="text-blue-600 font-semibold">OUR SERVICES</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2">Comprehensive Data Solutions</h2> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="database" class="text-blue-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Data Engineering</h3> |
| <p class="text-gray-600">Build robust data pipelines with our scalable engineering solutions.</p> |
| </div> |
| |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="bar-chart-2" class="text-green-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Analytics</h3> |
| <p class="text-gray-600">Turn your data into actionable insights with powerful analytics tools.</p> |
| </div> |
| |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="cpu" class="text-purple-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Machine Learning</h3> |
| <p class="text-gray-600">Implement cutting-edge AI models with our ML platform.</p> |
| </div> |
| |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="cloud" class="text-yellow-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Cloud Integration</h3> |
| <p class="text-gray-600">Seamlessly connect your on-prem and cloud data systems.</p> |
| </div> |
| |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="shield" class="text-red-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Data Governance</h3> |
| <p class="text-gray-600">Ensure compliance and security with our governance framework.</p> |
| </div> |
| |
| |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition-smooth"> |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="refresh-cw" class="text-indigo-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Automation</h3> |
| <p class="text-gray-600">Save time with automated data workflows and monitoring.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-16 bg-gray-900 text-white"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> |
| <div> |
| <div class="text-4xl font-bold mb-2">250+</div> |
| <div class="text-gray-400">Clients</div> |
| </div> |
| <div> |
| <div class="text-4xl font-bold mb-2">98%</div> |
| <div class="text-gray-400">Satisfaction</div> |
| </div> |
| <div> |
| <div class="text-4xl font-bold mb-2">10M+</div> |
| <div class="text-gray-400">Queries/Day</div> |
| </div> |
| <div> |
| <div class="text-4xl font-bold mb-2">24/7</div> |
| <div class="text-gray-400">Support</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col lg:flex-row items-center"> |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> |
| <span class="text-blue-600 font-semibold">DASHBOARD PREVIEW</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-6">Real-time Data Visualization</h2> |
| <p class="text-gray-600 mb-6">Our intuitive dashboard provides real-time insights with beautiful visualizations and customizable widgets.</p> |
| <ul class="space-y-4"> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> |
| <span>Interactive charts and graphs</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> |
| <span>Custom report generation</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> |
| <span>Role-based access control</span> |
| </li> |
| </ul> |
| </div> |
| <div class="lg:w-1/2 bg-gray-800 p-4 rounded-xl shadow-2xl"> |
| <div class="bg-gray-900 rounded-lg overflow-hidden"> |
| <div class="bg-gray-800 h-10 flex items-center px-4 border-b border-gray-700"> |
| <div class="flex space-x-2"> |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> |
| </div> |
| </div> |
| <div class="p-4"> |
| <canvas id="dashboardChart" height="300"></canvas> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-16 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <span class="text-blue-600 font-semibold">TESTIMONIALS</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2">What Our Clients Say</h2> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-white p-8 rounded-xl shadow-sm"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/1" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Sarah Johnson</h4> |
| <p class="text-gray-600">CTO, TechCorp</p> |
| </div> |
| </div> |
| <p class="text-gray-700">"The DataOps platform transformed how we handle our data infrastructure. Implementation was seamless and the results were immediate."</p> |
| <div class="flex mt-4 text-yellow-400"> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| </div> |
| </div> |
| |
| <div class="bg-white p-8 rounded-xl shadow-sm"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Michael Chen</h4> |
| <p class="text-gray-600">Data Director, FinServe</p> |
| </div> |
| </div> |
| <p class="text-gray-700">"The automation features saved us hundreds of hours per month. Our team can now focus on analysis rather than data wrangling."</p> |
| <div class="flex mt-4 text-yellow-400"> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| </div> |
| </div> |
| |
| <div class="bg-white p-8 rounded-xl shadow-sm"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/3" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Elena Rodriguez</h4> |
| <p class="text-gray-600">VP Analytics, HealthPlus</p> |
| </div> |
| </div> |
| <p class="text-gray-700">"We reduced our reporting time by 70% while increasing accuracy. The support team is incredibly responsive and knowledgeable."</p> |
| <div class="flex mt-4 text-yellow-400"> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-16 hero-gradient text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Data Operations?</h2> |
| <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands of companies that trust our platform for their critical data infrastructure.</p> |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> |
| <button class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-blue-50 transition-smooth">Start Free Trial</button> |
| <button class="border-2 border-white text-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition-smooth">Schedule Demo</button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-gray-900 text-gray-400 py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-white text-lg font-semibold mb-4">DataOps</h3> |
| <p class="mb-4">Empowering businesses with modern data solutions since 2015.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="hover:text-white transition-smooth"><i data-feather="twitter"></i></a> |
| <a href="#" class="hover:text-white transition-smooth"><i data-feather="linkedin"></i></a> |
| <a href="#" class="hover:text-white transition-smooth"><i data-feather="github"></i></a> |
| <a href="#" class="hover:text-white transition-smooth"><i data-feather="facebook"></i></a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-white text-lg font-semibold mb-4">Product</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition-smooth">Features</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Pricing</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Integrations</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Changelog</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-white text-lg font-semibold mb-4">Resources</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition-smooth">Documentation</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Tutorials</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Blog</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Community</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-white text-lg font-semibold mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition-smooth">About Us</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Careers</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Contact</a></li> |
| <li><a href="#" class="hover:text-white transition-smooth">Legal</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
| <p>© 2023 DataOps. All rights reserved.</p> |
| <div class="flex space-x-6 mt-4 md:mt-0"> |
| <a href="#" class="hover:text-white transition-smooth">Privacy Policy</a> |
| <a href="#" class="hover:text-white transition-smooth">Terms of Service</a> |
| <a href="#" class="hover:text-white transition-smooth">Cookies</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| VANTA.GLOBE({ |
| el: "#vanta-globe", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x3a86ff, |
| backgroundColor: 0x0, |
| size: 0.8 |
| }); |
| |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| feather.replace(); |
| |
| const ctx = document.getElementById('dashboardChart').getContext('2d'); |
| const chart = new Chart(ctx, { |
| type: 'line', |
| data: { |
| labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'], |
| datasets: [ |
| { |
| label: 'Data Processed (TB)', |
| data: [12, 19, 15, 22, 28, 24, 30], |
| borderColor: '#4F46E5', |
| backgroundColor: 'rgba(79, 70, 229, 0.1)', |
| tension: 0.3, |
| fill: true |
| }, |
| { |
| label: 'API Requests (M)', |
| data: [8, 12, 16, 14, 18, 22, 25], |
| borderColor: '#10B981', |
| backgroundColor: 'rgba(16, 185, 129, 0.1)', |
| tension: 0.3, |
| fill: true |
| } |
| ] |
| }, |
| options: { |
| responsive: true, |
| plugins: { |
| legend: { |
| position: 'top', |
| labels: { |
| color: '#E5E7EB', |
| font: { |
| family: "'Inter', sans-serif" |
| } |
| } |
| } |
| }, |
| scales: { |
| y: { |
| beginAtZero: true, |
| grid: { |
| color: 'rgba(255, 255, 255, 0.1)' |
| }, |
| ticks: { |
| color: '#E5E7EB' |
| } |
| }, |
| x: { |
| grid: { |
| color: 'rgba(255, 255, 255, 0.1)' |
| }, |
| ticks: { |
| color: '#E5E7EB' |
| } |
| } |
| } |
| } |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
|
|