File size: 23,727 Bytes
b275e49 |
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeuralSearch | AI-Powered Search Engine</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
--primary: #6d28d9;
--primary-light: #8b5cf6;
--dark: #1e293b;
--light: #f8fafc;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f1f5f9;
color: var(--dark);
}
.gradient-bg {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.search-shadow {
box-shadow: 0 10px 25px -5px rgba(109, 40, 217, 0.2);
}
.result-card {
transition: all 0.3s ease;
border-left: 4px solid transparent;
}
.result-card:hover {
transform: translateY(-2px);
border-left-color: var(--primary);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.typewriter {
overflow: hidden;
border-right: 2px solid var(--primary);
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--primary) }
}
</style>
</head>
<body>
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-brain text-3xl"></i>
<h1 class="text-2xl font-bold">NeuralSearch</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-purple-200 transition">Home</a>
<a href="#" class="hover:text-purple-200 transition">Features</a>
<a href="#" class="hover:text-purple-200 transition">API</a>
<a href="#" class="hover:text-purple-200 transition">Pricing</a>
<a href="#" class="hover:text-purple-200 transition">About</a>
</nav>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full bg-white text-purple-700 font-medium hover:bg-purple-100 transition">
Sign In
</button>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="gradient-bg text-white py-16 md:py-24">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl md:text-6xl font-bold mb-6">Search Smarter with AI</h2>
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-10 opacity-90">
NeuralSearch understands context, learns from interactions, and delivers precise results.
</p>
<div class="max-w-4xl mx-auto relative">
<div class="search-shadow rounded-full bg-white p-1 flex">
<input
type="text"
id="search-input"
placeholder="Ask anything..."
class="flex-grow px-6 py-4 rounded-full focus:outline-none text-gray-800"
>
<button id="search-btn" class="gradient-bg text-white rounded-full px-6 py-3 font-medium hover:bg-purple-700 transition">
<i class="fas fa-search mr-2"></i> Search
</button>
</div>
<div class="mt-4 text-sm text-purple-200 flex justify-center space-x-6">
<span class="flex items-center"><i class="fas fa-bolt mr-2"></i> Instant Answers</span>
<span class="flex items-center"><i class="fas fa-robot mr-2"></i> AI-Powered</span>
<span class="flex items-center"><i class="fas fa-lock mr-2"></i> Private</span>
</div>
</div>
</div>
</section>
<!-- AI Response Section -->
<section class="py-12 bg-white" id="results-section" style="display: none;">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<div class="flex items-center mb-8">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
<i class="fas fa-robot"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-800">AI Response</h3>
</div>
<div id="ai-response" class="bg-gray-50 rounded-xl p-6 mb-8 border border-gray-200">
<div class="flex items-start">
<div class="mr-4 text-purple-600">
<i class="fas fa-spinner fa-spin text-xl"></i>
</div>
<div class="flex-grow">
<div class="h-4 bg-gray-200 rounded w-3/4 mb-2 pulse"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2 pulse"></div>
<div class="h-4 bg-gray-200 rounded w-5/6 mb-2 pulse"></div>
<div class="h-4 bg-gray-200 rounded w-2/3 pulse"></div>
</div>
</div>
</div>
<h4 class="text-lg font-medium text-gray-700 mb-4">Related Results</h4>
<div id="search-results" class="space-y-4">
<!-- Results will be populated here by JavaScript -->
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Why Choose NeuralSearch?</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Our AI-powered search engine goes beyond keywords to understand the intent behind your queries.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-lightbulb"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Contextual Understanding</h3>
<p class="text-gray-600">
Our AI understands the context of your search, not just the keywords, delivering more relevant results.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Continuous Learning</h3>
<p class="text-gray-600">
The system learns from every interaction, constantly improving result quality for all users.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center text-white text-2xl mb-6">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Privacy Focused</h3>
<p class="text-gray-600">
We don't track or profile users. Your searches are private and secure by default.
</p>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">How NeuralSearch Works</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
A glimpse into the technology powering our search engine
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center mb-12">
<div class="md:w-1/3 mb-6 md:mb-0">
<div class="w-20 h-20 gradient-bg rounded-full flex items-center justify-center text-white text-3xl mx-auto">
1
</div>
</div>
<div class="md:w-2/3">
<h3 class="text-xl font-semibold mb-3">Natural Language Processing</h3>
<p class="text-gray-600">
Our AI analyzes your query using advanced NLP techniques to understand the intent behind your words, not just the keywords themselves.
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-center mb-12">
<div class="md:w-1/3 mb-6 md:mb-0 order-2 md:order-1">
<h3 class="text-xl font-semibold mb-3">Knowledge Graph Integration</h3>
<p class="text-gray-600">
We connect your query to our expansive knowledge graph that understands relationships between concepts, entities, and topics.
</p>
</div>
<div class="md:w-1/3 order-1 md:order-2 mb-6 md:mb-0">
<div class="w-20 h-20 gradient-bg rounded-full flex items-center justify-center text-white text-3xl mx-auto">
2
</div>
</div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-6 md:mb-0">
<div class="w-20 h-20 gradient-bg rounded-full flex items-center justify-center text-white text-3xl mx-auto">
3
</div>
</div>
<div class="md:w-2/3">
<h3 class="text-xl font-semibold mb-3">Personalized Results</h3>
<p class="text-gray-600">
Based on your preferences (if enabled), we tailor results to your needs while maintaining strict privacy standards.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to experience the future of search?</h2>
<p class="text-xl max-w-2xl mx-auto mb-8 opacity-90">
Join thousands of users who get better results with NeuralSearch.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-4 bg-white text-purple-700 rounded-full font-bold hover:bg-purple-100 transition">
Get Started for Free
</button>
<button class="px-8 py-4 border-2 border-white text-white rounded-full font-bold hover:bg-white hover:bg-opacity-10 transition">
Learn More
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-brain text-2xl text-purple-500"></i>
<h3 class="text-xl font-bold text-white">NeuralSearch</h3>
</div>
<p class="mb-4">
The AI-powered search engine that understands what you're really looking for.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold text-white mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Features</a></li>
<li><a href="#" class="hover:text-white transition">Pricing</a></li>
<li><a href="#" class="hover:text-white transition">API</a></li>
<li><a href="#" class="hover:text-white transition">Integrations</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold text-white mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Documentation</a></li>
<li><a href="#" class="hover:text-white transition">Guides</a></li>
<li><a href="#" class="hover:text-white transition">Blog</a></li>
<li><a href="#" class="hover:text-white transition">Support</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold text-white mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">About</a></li>
<li><a href="#" class="hover:text-white transition">Careers</a></li>
<li><a href="#" class="hover:text-white transition">Privacy</a></li>
<li><a href="#" class="hover:text-white transition">Terms</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-sm text-center">
<p>© 2023 NeuralSearch. All rights reserved.</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const searchBtn = document.getElementById('search-btn');
const searchInput = document.getElementById('search-input');
const resultsSection = document.getElementById('results-section');
const aiResponse = document.getElementById('ai-response');
const searchResults = document.getElementById('search-results');
// Sample AI responses for different queries
const aiResponses = {
'artificial intelligence': `Artificial intelligence (AI) refers to the simulation of human intelligence in machines that are programmed to think like humans and mimic their actions. The term may also be applied to any machine that exhibits traits associated with a human mind such as learning and problem-solving.`,
'machine learning': `Machine learning is a branch of artificial intelligence (AI) and computer science which focuses on the use of data and algorithms to imitate the way that humans learn, gradually improving its accuracy. It's used in a wide variety of applications, from email filtering to computer vision.`,
'neural networks': `Neural networks, also known as artificial neural networks (ANNs) or simulated neural networks (SNNs), are a subset of machine learning and are at the heart of deep learning algorithms. Their name and structure are inspired by the human brain, mimicking the way that biological neurons signal to one another.`,
'deep learning': `Deep learning is a type of machine learning and artificial intelligence (AI) that imitates the way humans gain certain types of knowledge. It is essentially a neural network with three or more layers. These neural networks attempt to simulate the behavior of the human brain—albeit far from matching its ability—allowing it to "learn" from large amounts of data.`
};
// Sample search results
const sampleResults = [
{
title: "Introduction to Artificial Intelligence",
url: "https://example.com/ai-intro",
description: "A comprehensive guide to understanding the basics of AI, its history, and current applications across industries."
},
{
title: "The Future of AI: Trends and Predictions",
url: "https://example.com/ai-future",
description: "Experts weigh in on where artificial intelligence is headed in the next decade and how it will transform various sectors."
},
{
title: "Ethical Considerations in AI Development",
url: "https://example.com/ai-ethics",
description: "Exploring the moral implications of artificial intelligence and frameworks for responsible AI implementation."
},
{
title: "AI vs Machine Learning: Key Differences",
url: "https://example.com/ai-vs-ml",
description: "While often used interchangeably, AI and machine learning are distinct concepts. This article breaks down their differences."
}
];
// Handle search
searchBtn.addEventListener('click', performSearch);
searchInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
performSearch();
}
});
function performSearch() {
const query = searchInput.value.trim();
if (query) {
// Show loading state
resultsSection.style.display = 'block';
window.scrollTo({
top: resultsSection.offsetTop - 20,
behavior: 'smooth'
});
// Simulate AI processing delay
setTimeout(() => {
// Update AI response
let response = "I couldn't find specific information about that topic. Here's some general information about artificial intelligence that might be helpful.";
for (const key in aiResponses) {
if (query.toLowerCase().includes(key)) {
response = aiResponses[key];
break;
}
}
aiResponse.innerHTML = `
<div class="flex items-start">
<div class="mr-4 text-purple-600">
<i class="fas fa-robot text-xl"></i>
</div>
<div class="flex-grow">
<p class="text-gray-800">${response}</p>
<div class="mt-4 pt-4 border-t border-gray-200">
<button class="text-purple-600 hover:text-purple-800 font-medium flex items-center">
<i class="fas fa-thumbs-up mr-2"></i> Helpful
</button>
</div>
</div>
</div>
`;
// Populate search results
searchResults.innerHTML = '';
sampleResults.forEach(result => {
const resultElement = document.createElement('div');
resultElement.className = 'result-card bg-white p-6 rounded-lg shadow-sm';
resultElement.innerHTML = `
<h3 class="text-xl font-semibold text-purple-700 mb-1">${result.title}</h3>
<p class="text-sm text-purple-500 mb-2">${result.url}</p>
<p class="text-gray-600">${result.description}</p>
`;
searchResults.appendChild(resultElement);
});
}, 1500);
}
}
// Typewriter effect for hero text (optional)
const heroText = document.querySelector('.hero-text');
if (heroText) {
heroText.classList.add('typewriter');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Jafar0/jafar0" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |