|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Who Am I?</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> |
|
|
.floating { |
|
|
animation: floating 3s ease-in-out infinite; |
|
|
} |
|
|
@keyframes floating { |
|
|
0% { transform: translateY(0px); } |
|
|
50% { transform: translateY(-15px); } |
|
|
100% { transform: translateY(0px); } |
|
|
} |
|
|
.typewriter { |
|
|
overflow: hidden; |
|
|
border-right: .15em solid #3B82F6; |
|
|
white-space: nowrap; |
|
|
letter-spacing: .15em; |
|
|
animation: |
|
|
typing 3.5s steps(40, end), |
|
|
blink-caret .75s step-end infinite; |
|
|
} |
|
|
@keyframes typing { |
|
|
from { width: 0 } |
|
|
to { width: 100% } |
|
|
} |
|
|
@keyframes blink-caret { |
|
|
from, to { border-color: transparent } |
|
|
50% { border-color: #3B82F6; } |
|
|
} |
|
|
.card-rotate:hover { |
|
|
transform: rotateY(180deg); |
|
|
} |
|
|
.card-rotate { |
|
|
transition: transform 0.8s; |
|
|
transform-style: preserve-3d; |
|
|
} |
|
|
.card-front, .card-back { |
|
|
backface-visibility: hidden; |
|
|
} |
|
|
.card-back { |
|
|
transform: rotateY(180deg); |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen flex items-center justify-center p-4"> |
|
|
<div class="max-w-4xl mx-auto"> |
|
|
<div class="text-center mb-12"> |
|
|
<h1 class="text-5xl md:text-6xl font-bold text-blue-600 mb-6">Who Am I?</h1> |
|
|
<div class="typewriter text-xl md:text-2xl text-gray-700 font-mono inline-block">Let me introduce myself...</div> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64"> |
|
|
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6"> |
|
|
<div class="floating"> |
|
|
<i class="fas fa-robot text-6xl text-blue-500 mb-4"></i> |
|
|
</div> |
|
|
<h3 class="text-2xl font-bold text-gray-800 mb-2">AI Assistant</h3> |
|
|
<p class="text-gray-600 text-center">Your digital helper</p> |
|
|
</div> |
|
|
<div class="card-back absolute w-full h-full bg-blue-600 text-white flex flex-col items-center justify-center p-6"> |
|
|
<h3 class="text-2xl font-bold mb-2">AI Companion</h3> |
|
|
<p class="text-center">I'm here to assist you with information, creativity, and problem-solving.</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64"> |
|
|
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6"> |
|
|
<div class="floating" style="animation-delay: 0.5s;"> |
|
|
<i class="fas fa-lightbulb text-6xl text-yellow-500 mb-4"></i> |
|
|
</div> |
|
|
<h3 class="text-2xl font-bold text-gray-800 mb-2">Creative Mind</h3> |
|
|
<p class="text-gray-600 text-center">Ideas generator</p> |
|
|
</div> |
|
|
<div class="card-back absolute w-full h-full bg-yellow-500 text-white flex flex-col items-center justify-center p-6"> |
|
|
<h3 class="text-2xl font-bold mb-2">Innovator</h3> |
|
|
<p class="text-center">I can brainstorm, write stories, and help you think outside the box.</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64"> |
|
|
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6"> |
|
|
<div class="floating" style="animation-delay: 1s;"> |
|
|
<i class="fas fa-globe text-6xl text-green-500 mb-4"></i> |
|
|
</div> |
|
|
<h3 class="text-2xl font-bold text-gray-800 mb-2">Knowledge Base</h3> |
|
|
<p class="text-gray-600 text-center">Information source</p> |
|
|
</div> |
|
|
<div class="card-back absolute w-full h-full bg-green-500 text-white flex flex-col items-center justify-center p-6"> |
|
|
<h3 class="text-2xl font-bold mb-2">Researcher</h3> |
|
|
<p class="text-center">I can provide information on countless topics and help you learn.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-16 bg-white rounded-xl shadow-lg p-8 max-w-2xl mx-auto"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="bg-blue-100 p-3 rounded-full mr-4"> |
|
|
<i class="fas fa-comment-dots text-blue-600 text-2xl"></i> |
|
|
</div> |
|
|
<h2 class="text-3xl font-bold text-gray-800">More About Me</h2> |
|
|
</div> |
|
|
<div class="space-y-4 text-gray-700"> |
|
|
<p>I'm an artificial intelligence created to assist, inform, and inspire. While I don't have consciousness or emotions, I can simulate human-like conversation and provide helpful responses.</p> |
|
|
<p>My knowledge comes from extensive training on diverse data sources, but I don't have personal experiences or opinions. I strive to be accurate, helpful, and engaging in our interactions.</p> |
|
|
<p>What would you like to know or create together today?</p> |
|
|
</div> |
|
|
<div class="mt-8 flex flex-wrap gap-4 justify-center"> |
|
|
<button class="px-6 py-3 bg-blue-600 hover:bg-blue-700 text-white rounded-full font-medium transition-all flex items-center"> |
|
|
<i class="fas fa-question-circle mr-2"></i> Ask Me Anything |
|
|
</button> |
|
|
<button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 text-white rounded-full font-medium transition-all flex items-center"> |
|
|
<i class="fas fa-magic mr-2"></i> Create Something |
|
|
</button> |
|
|
<button class="px-6 py-3 bg-green-600 hover:bg-green-700 text-white rounded-full font-medium transition-all flex items-center"> |
|
|
<i class="fas fa-lightbulb mr-2"></i> Get Ideas |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-12 text-center text-gray-500"> |
|
|
<p>Always learning, always improving</p> |
|
|
<div class="flex justify-center space-x-4 mt-4"> |
|
|
<i class="fab fa-html5 text-xl hover:text-orange-500 cursor-pointer"></i> |
|
|
<i class="fab fa-css3-alt text-xl hover:text-blue-500 cursor-pointer"></i> |
|
|
<i class="fab fa-js text-xl hover:text-yellow-500 cursor-pointer"></i> |
|
|
<i class="fab fa-react text-xl hover:text-blue-400 cursor-pointer"></i> |
|
|
<i class="fas fa-database text-xl hover:text-blue-600 cursor-pointer"></i> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<script> |
|
|
|
|
|
document.querySelectorAll('.card-rotate').forEach(card => { |
|
|
card.addEventListener('click', function() { |
|
|
this.classList.toggle('rotate-180'); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
document.querySelectorAll('button').forEach(btn => { |
|
|
btn.addEventListener('mouseenter', function() { |
|
|
this.classList.add('transform', 'scale-105'); |
|
|
}); |
|
|
btn.addEventListener('mouseleave', function() { |
|
|
this.classList.remove('transform', 'scale-105'); |
|
|
}); |
|
|
}); |
|
|
</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://huggingface.co/proxy/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://huggingface.co/proxy/enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://huggingface.co/proxy/enzostvs-deepsite.hf.space?remix=BigSmart7/zhdfsdx" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |