undefined - Initial Deployment
Browse files- README.md +5 -3
- index.html +160 -19
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: zhdfsdx
|
| 3 |
+
emoji: 🐳
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,160 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Who Am I?</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
.floating {
|
| 11 |
+
animation: floating 3s ease-in-out infinite;
|
| 12 |
+
}
|
| 13 |
+
@keyframes floating {
|
| 14 |
+
0% { transform: translateY(0px); }
|
| 15 |
+
50% { transform: translateY(-15px); }
|
| 16 |
+
100% { transform: translateY(0px); }
|
| 17 |
+
}
|
| 18 |
+
.typewriter {
|
| 19 |
+
overflow: hidden;
|
| 20 |
+
border-right: .15em solid #3B82F6;
|
| 21 |
+
white-space: nowrap;
|
| 22 |
+
letter-spacing: .15em;
|
| 23 |
+
animation:
|
| 24 |
+
typing 3.5s steps(40, end),
|
| 25 |
+
blink-caret .75s step-end infinite;
|
| 26 |
+
}
|
| 27 |
+
@keyframes typing {
|
| 28 |
+
from { width: 0 }
|
| 29 |
+
to { width: 100% }
|
| 30 |
+
}
|
| 31 |
+
@keyframes blink-caret {
|
| 32 |
+
from, to { border-color: transparent }
|
| 33 |
+
50% { border-color: #3B82F6; }
|
| 34 |
+
}
|
| 35 |
+
.card-rotate:hover {
|
| 36 |
+
transform: rotateY(180deg);
|
| 37 |
+
}
|
| 38 |
+
.card-rotate {
|
| 39 |
+
transition: transform 0.8s;
|
| 40 |
+
transform-style: preserve-3d;
|
| 41 |
+
}
|
| 42 |
+
.card-front, .card-back {
|
| 43 |
+
backface-visibility: hidden;
|
| 44 |
+
}
|
| 45 |
+
.card-back {
|
| 46 |
+
transform: rotateY(180deg);
|
| 47 |
+
}
|
| 48 |
+
</style>
|
| 49 |
+
</head>
|
| 50 |
+
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen flex items-center justify-center p-4">
|
| 51 |
+
<div class="max-w-4xl mx-auto">
|
| 52 |
+
<div class="text-center mb-12">
|
| 53 |
+
<h1 class="text-5xl md:text-6xl font-bold text-blue-600 mb-6">Who Am I?</h1>
|
| 54 |
+
<div class="typewriter text-xl md:text-2xl text-gray-700 font-mono inline-block">Let me introduce myself...</div>
|
| 55 |
+
</div>
|
| 56 |
+
|
| 57 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
| 58 |
+
<!-- Card 1 -->
|
| 59 |
+
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64">
|
| 60 |
+
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6">
|
| 61 |
+
<div class="floating">
|
| 62 |
+
<i class="fas fa-robot text-6xl text-blue-500 mb-4"></i>
|
| 63 |
+
</div>
|
| 64 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-2">AI Assistant</h3>
|
| 65 |
+
<p class="text-gray-600 text-center">Your digital helper</p>
|
| 66 |
+
</div>
|
| 67 |
+
<div class="card-back absolute w-full h-full bg-blue-600 text-white flex flex-col items-center justify-center p-6">
|
| 68 |
+
<h3 class="text-2xl font-bold mb-2">AI Companion</h3>
|
| 69 |
+
<p class="text-center">I'm here to assist you with information, creativity, and problem-solving.</p>
|
| 70 |
+
</div>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
<!-- Card 2 -->
|
| 74 |
+
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64">
|
| 75 |
+
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6">
|
| 76 |
+
<div class="floating" style="animation-delay: 0.5s;">
|
| 77 |
+
<i class="fas fa-lightbulb text-6xl text-yellow-500 mb-4"></i>
|
| 78 |
+
</div>
|
| 79 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-2">Creative Mind</h3>
|
| 80 |
+
<p class="text-gray-600 text-center">Ideas generator</p>
|
| 81 |
+
</div>
|
| 82 |
+
<div class="card-back absolute w-full h-full bg-yellow-500 text-white flex flex-col items-center justify-center p-6">
|
| 83 |
+
<h3 class="text-2xl font-bold mb-2">Innovator</h3>
|
| 84 |
+
<p class="text-center">I can brainstorm, write stories, and help you think outside the box.</p>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
|
| 88 |
+
<!-- Card 3 -->
|
| 89 |
+
<div class="bg-white rounded-xl shadow-xl overflow-hidden card-rotate relative h-64">
|
| 90 |
+
<div class="card-front absolute w-full h-full flex flex-col items-center justify-center p-6">
|
| 91 |
+
<div class="floating" style="animation-delay: 1s;">
|
| 92 |
+
<i class="fas fa-globe text-6xl text-green-500 mb-4"></i>
|
| 93 |
+
</div>
|
| 94 |
+
<h3 class="text-2xl font-bold text-gray-800 mb-2">Knowledge Base</h3>
|
| 95 |
+
<p class="text-gray-600 text-center">Information source</p>
|
| 96 |
+
</div>
|
| 97 |
+
<div class="card-back absolute w-full h-full bg-green-500 text-white flex flex-col items-center justify-center p-6">
|
| 98 |
+
<h3 class="text-2xl font-bold mb-2">Researcher</h3>
|
| 99 |
+
<p class="text-center">I can provide information on countless topics and help you learn.</p>
|
| 100 |
+
</div>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
|
| 104 |
+
<div class="mt-16 bg-white rounded-xl shadow-lg p-8 max-w-2xl mx-auto">
|
| 105 |
+
<div class="flex items-center mb-6">
|
| 106 |
+
<div class="bg-blue-100 p-3 rounded-full mr-4">
|
| 107 |
+
<i class="fas fa-comment-dots text-blue-600 text-2xl"></i>
|
| 108 |
+
</div>
|
| 109 |
+
<h2 class="text-3xl font-bold text-gray-800">More About Me</h2>
|
| 110 |
+
</div>
|
| 111 |
+
<div class="space-y-4 text-gray-700">
|
| 112 |
+
<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>
|
| 113 |
+
<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>
|
| 114 |
+
<p>What would you like to know or create together today?</p>
|
| 115 |
+
</div>
|
| 116 |
+
<div class="mt-8 flex flex-wrap gap-4 justify-center">
|
| 117 |
+
<button class="px-6 py-3 bg-blue-600 hover:bg-blue-700 text-white rounded-full font-medium transition-all flex items-center">
|
| 118 |
+
<i class="fas fa-question-circle mr-2"></i> Ask Me Anything
|
| 119 |
+
</button>
|
| 120 |
+
<button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 text-white rounded-full font-medium transition-all flex items-center">
|
| 121 |
+
<i class="fas fa-magic mr-2"></i> Create Something
|
| 122 |
+
</button>
|
| 123 |
+
<button class="px-6 py-3 bg-green-600 hover:bg-green-700 text-white rounded-full font-medium transition-all flex items-center">
|
| 124 |
+
<i class="fas fa-lightbulb mr-2"></i> Get Ideas
|
| 125 |
+
</button>
|
| 126 |
+
</div>
|
| 127 |
+
</div>
|
| 128 |
+
|
| 129 |
+
<div class="mt-12 text-center text-gray-500">
|
| 130 |
+
<p>Always learning, always improving</p>
|
| 131 |
+
<div class="flex justify-center space-x-4 mt-4">
|
| 132 |
+
<i class="fab fa-html5 text-xl hover:text-orange-500 cursor-pointer"></i>
|
| 133 |
+
<i class="fab fa-css3-alt text-xl hover:text-blue-500 cursor-pointer"></i>
|
| 134 |
+
<i class="fab fa-js text-xl hover:text-yellow-500 cursor-pointer"></i>
|
| 135 |
+
<i class="fab fa-react text-xl hover:text-blue-400 cursor-pointer"></i>
|
| 136 |
+
<i class="fas fa-database text-xl hover:text-blue-600 cursor-pointer"></i>
|
| 137 |
+
</div>
|
| 138 |
+
</div>
|
| 139 |
+
</div>
|
| 140 |
+
|
| 141 |
+
<script>
|
| 142 |
+
// Make all cards rotate on click for mobile users
|
| 143 |
+
document.querySelectorAll('.card-rotate').forEach(card => {
|
| 144 |
+
card.addEventListener('click', function() {
|
| 145 |
+
this.classList.toggle('rotate-180');
|
| 146 |
+
});
|
| 147 |
+
});
|
| 148 |
+
|
| 149 |
+
// Animate buttons on hover
|
| 150 |
+
document.querySelectorAll('button').forEach(btn => {
|
| 151 |
+
btn.addEventListener('mouseenter', function() {
|
| 152 |
+
this.classList.add('transform', 'scale-105');
|
| 153 |
+
});
|
| 154 |
+
btn.addEventListener('mouseleave', function() {
|
| 155 |
+
this.classList.remove('transform', 'scale-105');
|
| 156 |
+
});
|
| 157 |
+
});
|
| 158 |
+
</script>
|
| 159 |
+
<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=BigSmart7/zhdfsdx" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 160 |
+
</html>
|