Spaces:
Running
Running
File size: 5,988 Bytes
93cbe09 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GhostStack Finder</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<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>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-header></custom-header>
<main class="flex-grow container mx-auto px-4 py-8">
<section class="mb-16 text-center">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Find Your Next Strategic Site</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Discover high-potential ghost sites with our AI-powered analyzer. Filter by location, size, and lease status to find your perfect development opportunity.
</p>
</section>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-16">
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="map-pin" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Location Intelligence</h3>
<p class="text-gray-600">Rural/urban classification and precise geolocation data to target ideal areas.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
<div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="bar-chart-2" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Smart Scoring</h3>
<p class="text-gray-600">Algorithmic evaluation based on lease terms, area, use class, and location potential.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="filter" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced Filters</h3>
<p class="text-gray-600">Refine results by area size, lease expiration, priority band, and more.</p>
</div>
</div>
<section class="bg-gradient-to-r from-blue-600 to-indigo-700 rounded-2xl p-8 text-white mb-16">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">Ready to Unlock Development Potential?</h2>
<p class="text-blue-100 mb-6">
Our database contains thousands of underutilized sites scored and ranked for immediate development opportunities.
</p>
<a href="#" class="inline-block bg-white text-blue-600 font-semibold py-3 px-8 rounded-full hover:bg-gray-100 transition-colors">
Explore Top Candidates
</a>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">How It Works</h2>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="text-center">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 font-bold text-xl">1</span>
</div>
<h3 class="font-semibold text-lg mb-2">Data Ingestion</h3>
<p class="text-gray-600">We process lease records and geographic data from authoritative sources.</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-green-600 font-bold text-xl">2</span>
</div>
<h3 class="font-semibold text-lg mb-2">Scoring Algorithm</h3>
<p class="text-gray-600">Each site is evaluated across four key factors with weighted scoring.</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-yellow-600 font-bold text-xl">3</span>
</div>
<h3 class="font-semibold text-lg mb-2">Ranking & Prioritization</h3>
<p class="text-gray-600">Sites are ranked and categorized into priority bands A, B, or C.</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-purple-600 font-bold text-xl">4</span>
</div>
<h3 class="font-semibold text-lg mb-2">Actionable Insights</h3>
<p class="text-gray-600">Export top candidates and detailed reports for your team.</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/header.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> |