netpulse-tracker / index.html
sameeralam3127's picture
create a webages
4bfff47 verified
Raw
History Blame Contribute Delete
7.04 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NetPulse Tracker | IP Management & Monitoring</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>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#6366F1',
secondary: '#0EA5E9',
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center py-16">
<h1 class="text-5xl font-bold text-indigo-600 mb-4">NetPulse Tracker</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto mb-8">Modern IP Management & Network Monitoring Tool</p>
<div class="flex justify-center gap-4">
<a href="#features" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg transition duration-300 flex items-center">
<i data-feather="zap" class="mr-2"></i> Explore Features
</a>
<a href="#demo" class="bg-sky-500 hover:bg-sky-600 text-white px-6 py-3 rounded-lg transition duration-300 flex items-center">
<i data-feather="play" class="mr-2"></i> See Demo
</a>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-12">
<h2 class="text-3xl font-bold text-center text-indigo-600 mb-12">Key Features</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-indigo-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="globe" class="text-indigo-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Subnet Discovery</h3>
<p class="text-gray-600">Automatically discover and scan your entire subnet with a single command.</p>
</div>
<!-- Feature 2 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-sky-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="activity" class="text-sky-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Multi-threaded Scanning</h3>
<p class="text-gray-600">High performance parallel pinging with thread pools for rapid results.</p>
</div>
<!-- Feature 3 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-indigo-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="file-text" class="text-indigo-600"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Multi-format Reporting</h3>
<p class="text-gray-600">Export results in XLSX, CSV, or JSON formats for analysis.</p>
</div>
</div>
</section>
<!-- Demo Section -->
<section id="demo" class="py-12 bg-gradient-to-r from-indigo-50 to-sky-50 rounded-xl p-8 mb-12">
<h2 class="text-3xl font-bold text-center text-indigo-600 mb-8">How It Works</h2>
<div class="flex flex-col md:flex-row gap-8 items-center">
<div class="md:w-1/2">
<div class="bg-white p-4 rounded-lg shadow-md overflow-hidden">
<pre class="bg-gray-800 text-gray-100 p-4 rounded-lg overflow-x-auto text-sm">
<span class="text-green-400">$ ipmg --discover</span>
=== IPMG Network Scan ===
192.168.1.1 Active 14ms router.home
192.168.1.12 Active 2ms workstation-1
192.168.1.34 Inactive - -
192.168.1.56 Active 5ms nas-server
=== Summary ===
Active: 3
Inactive: 1
Success Rate: 75.00%
</pre>
</div>
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Powerful Network Monitoring</h3>
<p class="text-gray-600 mb-4">NetPulse Tracker provides enterprise-grade network scanning capabilities with a simple, intuitive interface.</p>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2"></i>
<span>Scheduled recurrent scans</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2"></i>
<span>Hostname resolution (PTR records)</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2"></i>
<span>Auto-generated sample input files</span>
</li>
</ul>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-12 text-center">
<h2 class="text-3xl font-bold text-indigo-600 mb-4">Ready to Monitor Your Network?</h2>
<p class="text-xl text-gray-600 mb-8">Get started with NetPulse Tracker in minutes</p>
<div class="flex justify-center gap-4">
<a href="#installation" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg transition duration-300 flex items-center">
<i data-feather="download" class="mr-2"></i> Installation Guide
</a>
<a href="https://github.com/sameeralam3127/ipmg" class="bg-gray-800 hover:bg-gray-900 text-white px-6 py-3 rounded-lg transition duration-300 flex items-center">
<i data-feather="github" class="mr-2"></i> View on GitHub
</a>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>