index.html should be awesome and have navigation buttons to other pages such as landing page and ml_prospectinh
Browse files- index.html +13 -6
index.html
CHANGED
|
@@ -58,7 +58,6 @@
|
|
| 58 |
<div class="absolute top-1/3 left-20 w-72 h-72 bg-secondary rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob animation-delay-2000"></div>
|
| 59 |
<div class="absolute bottom-20 right-1/3 w-60 h-60 bg-primary rounded-full mix-blend-multiply filter blur-xl opacity-25 animate-blob animation-delay-4000"></div>
|
| 60 |
</div>
|
| 61 |
-
|
| 62 |
<div class="relative z-10 container mx-auto px-4 py-8 max-w-4xl">
|
| 63 |
<!-- Header -->
|
| 64 |
<header class="flex justify-between items-center mb-10">
|
|
@@ -68,10 +67,12 @@
|
|
| 68 |
</div>
|
| 69 |
<h1 class="text-2xl font-bold text-gray-800">Prospect AI Virtual Assistant</h1>
|
| 70 |
</div>
|
| 71 |
-
<
|
|
|
|
|
|
|
|
|
|
| 72 |
</header>
|
| 73 |
-
|
| 74 |
-
<!-- Main Chat Container -->
|
| 75 |
<main class="bg-white rounded-2xl shadow-xl overflow-hidden">
|
| 76 |
<!-- Chat Window -->
|
| 77 |
<div class="chat-container p-6" id="chatContainer">
|
|
@@ -160,12 +161,18 @@
|
|
| 160 |
</div>
|
| 161 |
</div>
|
| 162 |
</section>
|
| 163 |
-
|
| 164 |
<!-- Footer -->
|
| 165 |
<footer class="mt-12 text-center text-gray-500 text-sm">
|
| 166 |
<p>© 2025 Prospect AI • Images from Unsplash</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
</footer>
|
| 168 |
-
|
| 169 |
|
| 170 |
<script>
|
| 171 |
feather.replace();
|
|
|
|
| 58 |
<div class="absolute top-1/3 left-20 w-72 h-72 bg-secondary rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob animation-delay-2000"></div>
|
| 59 |
<div class="absolute bottom-20 right-1/3 w-60 h-60 bg-primary rounded-full mix-blend-multiply filter blur-xl opacity-25 animate-blob animation-delay-4000"></div>
|
| 60 |
</div>
|
|
|
|
| 61 |
<div class="relative z-10 container mx-auto px-4 py-8 max-w-4xl">
|
| 62 |
<!-- Header -->
|
| 63 |
<header class="flex justify-between items-center mb-10">
|
|
|
|
| 67 |
</div>
|
| 68 |
<h1 class="text-2xl font-bold text-gray-800">Prospect AI Virtual Assistant</h1>
|
| 69 |
</div>
|
| 70 |
+
<div class="flex space-x-4">
|
| 71 |
+
<a href="landing.html" class="text-sm text-gray-500 hover:text-primary transition">Home</a>
|
| 72 |
+
<a href="ml-prospecting.html" class="text-sm text-gray-500 hover:text-primary transition">ML Prospecting</a>
|
| 73 |
+
</div>
|
| 74 |
</header>
|
| 75 |
+
<!-- Main Chat Container -->
|
|
|
|
| 76 |
<main class="bg-white rounded-2xl shadow-xl overflow-hidden">
|
| 77 |
<!-- Chat Window -->
|
| 78 |
<div class="chat-container p-6" id="chatContainer">
|
|
|
|
| 161 |
</div>
|
| 162 |
</div>
|
| 163 |
</section>
|
|
|
|
| 164 |
<!-- Footer -->
|
| 165 |
<footer class="mt-12 text-center text-gray-500 text-sm">
|
| 166 |
<p>© 2025 Prospect AI • Images from Unsplash</p>
|
| 167 |
+
<div class="mt-2">
|
| 168 |
+
<a href="landing.html" class="text-gray-500 hover:text-primary transition mr-4">Home</a>
|
| 169 |
+
<a href="training.html" class="text-gray-500 hover:text-primary transition mr-4">Training</a>
|
| 170 |
+
<a href="ml-prospecting.html" class="text-gray-500 hover:text-primary transition mr-4">ML Prospecting</a>
|
| 171 |
+
<a href="crewai-enrichment.html" class="text-gray-500 hover:text-primary transition mr-4">CrewAI Enrichment</a>
|
| 172 |
+
<a href="hybrid-prospecting.html" class="text-gray-500 hover:text-primary transition">Hybrid Prospecting</a>
|
| 173 |
+
</div>
|
| 174 |
</footer>
|
| 175 |
+
</div>
|
| 176 |
|
| 177 |
<script>
|
| 178 |
feather.replace();
|