datacenter-ip-checker/web/landing/blog/index.html

95 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Blog</title>
@@include('../meta.html') @@include('../link_deps.html')
</head>
<body class="bg-base-200 flex flex-col items-center min-h-screen">
@@include('../nav.html')
<div class="max-w-md">
<h2 class="text-2xl font-bold mt-4 mb-2 text-base-content">Blog Posts</h2>
<div class="mt-4">
<a href="/blog/bot-detection.html" class="text-primary text-white">
<div class="flex items-start space-x-4">
<img
src="/assets/bot-detection.webp"
alt="Blog Post 1 Image"
class="w-32 h-32 object-cover rounded-lg"
/>
<div>
<h3 class="text-xl font-bold text-white">
Why Do Data Center IPs Matter?
</h3>
<p class="text-white">
Learn the importance of data center IPs, their impact on
cybersecurity, and how to manage them effectively.
</p>
</div>
</div>
</a>
</div>
<div class="mt-4">
<a href="/blog/compare.html" class="text-primary text-white">
<div class="flex items-start space-x-4">
<img
src="/assets/compare.webp"
alt="Blog Post 1 Image"
class="w-32 h-32 object-cover rounded-lg"
/>
<div>
<h3 class="text-xl font-bold text-white">
Comparing Bots Detection Methods
</h3>
<p class="text-white">
Explore cutting-edge bot detection methods and discover how our
Real-Time IP Detection API.
</p>
</div>
</div>
</a>
</div>
<div class="mt-4">
<a href="/blog/daily-update.html" class="text-primary text-white">
<div class="flex items-start space-x-4">
<img
src="/assets/daily-update.webp"
alt="Blog Post 1 Image"
class="w-32 h-32 object-cover rounded-lg"
/>
<div>
<h3 class="text-xl font-bold text-white">
The Importance of Regular Data Updates IP Detection
</h3>
<p class="text-white">
Discover why keeping your IP detection data current is vital for
security and efficiency.
</p>
</div>
</div>
</a>
</div>
<div class="mt-4">
<a href="/blog/how-to-integrate.html" class="text-primary text-white">
<div class="flex items-start space-x-4">
<img
src="/assets/how-to-integrate.webp"
alt="Blog Post 1 Image"
class="w-32 h-32 object-cover rounded-lg"
/>
<div>
<h3 class="text-xl font-bold text-white">How to use our API</h3>
<p class="text-white">
Effortlessly integrate API into your application to identify
data center origins of IP addresses.
</p>
</div>
</div>
</a>
</div>
</div>
<div class="mt-4 w-full">@@include('../price_card.html')</div>
@@include('../footer.html') @@include('../script_deps.html')
</body>
</html>