|
<!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 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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
</div> |
|
</div> |
|
</div> |
|
</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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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 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'); |
|
|
|
|
|
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.` |
|
}; |
|
|
|
|
|
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." |
|
} |
|
]; |
|
|
|
|
|
searchBtn.addEventListener('click', performSearch); |
|
searchInput.addEventListener('keypress', function(e) { |
|
if (e.key === 'Enter') { |
|
performSearch(); |
|
} |
|
}); |
|
|
|
function performSearch() { |
|
const query = searchInput.value.trim(); |
|
|
|
if (query) { |
|
|
|
resultsSection.style.display = 'block'; |
|
window.scrollTo({ |
|
top: resultsSection.offsetTop - 20, |
|
behavior: 'smooth' |
|
}); |
|
|
|
|
|
setTimeout(() => { |
|
|
|
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> |
|
`; |
|
|
|
|
|
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); |
|
} |
|
} |
|
|
|
|
|
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> |