File size: 31,654 Bytes
8a54af1 |
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 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Визитка в стиле Claude</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=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f9fafb;
color: #111827;
}
.claude-bg {
background-color: #f0f4ff;
}
.claude-primary {
color: #4e46e5;
}
.claude-border {
border-color: #e5e7eb;
}
.message-bubble {
border-radius: 16px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.user-bubble {
background-color: #4e46e5;
color: white;
}
.assistant-bubble {
background-color: white;
border: 1px solid #e5e7eb;
}
.typing-indicator span {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #9ca3af;
margin-right: 4px;
}
.typing-indicator span:nth-child(1) {
animation: bounce 1s infinite;
}
.typing-indicator span:nth-child(2) {
animation: bounce 1s infinite 0.2s;
}
.typing-indicator span:nth-child(3) {
animation: bounce 1s infinite 0.4s;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.gradient-text {
background: linear-gradient(90deg, #4e46e5, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Шапка -->
<header class="claude-bg py-4 px-6 border-b claude-border">
<div class="max-w-4xl mx-auto flex items-center justify-between">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-indigo-500 to-purple-600 flex items-center justify-center">
<i class="fas fa-robot text-white text-sm"></i>
</div>
<h1 class="text-xl font-semibold gradient-text">Claude Визитка</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#about" class="text-gray-600 hover:text-indigo-600 transition">Обо мне</a>
<a href="#skills" class="text-gray-600 hover:text-indigo-600 transition">Навыки</a>
<a href="#projects" class="text-gray-600 hover:text-indigo-600 transition">Проекты</a>
<a href="#contact" class="text-gray-600 hover:text-indigo-600 transition">Контакты</a>
</nav>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</header>
<!-- Основной контент -->
<main class="flex-grow py-8 px-4 claude-bg">
<div class="max-w-4xl mx-auto">
<!-- Чат-интерфейс -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden mb-8">
<!-- Заголовок чата -->
<div class="border-b claude-border px-6 py-4 flex items-center">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h2 class="font-semibold">Иван Иванов</h2>
<p class="text-sm text-gray-500">Frontend разработчик & UI/UX дизайнер</p>
</div>
</div>
<!-- Сообщения -->
<div class="p-6 space-y-4">
<!-- Сообщение от пользователя -->
<div class="flex justify-end">
<div class="user-bubble message-bubble max-w-3xl px-4 py-3">
<p>Привет! Расскажи немного о себе.</p>
</div>
</div>
<!-- Сообщение от ассистента -->
<div class="flex">
<div class="mr-2 mt-2">
<div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600 text-sm"></i>
</div>
</div>
<div class="assistant-bubble message-bubble max-w-3xl px-4 py-3">
<p>Привет! Меня зовут Иван, я frontend разработчик с 5-летним опытом работы. Специализируюсь на создании современных, отзывчивых веб-приложений с использованием React, Vue.js и TailwindCSS.</p>
</div>
</div>
<!-- Сообщение от пользователя -->
<div class="flex justify-end">
<div class="user-bubble message-bubble max-w-3xl px-4 py-3">
<p>Какие у тебя ключевые навыки?</p>
</div>
</div>
<!-- Сообщение от ассистента -->
<div class="flex">
<div class="mr-2 mt-2">
<div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600 text-sm"></i>
</div>
</div>
<div class="assistant-bubble message-bubble max-w-3xl px-4 py-3">
<div class="space-y-2">
<p>Мои основные навыки включают:</p>
<ul class="list-disc pl-5 space-y-1">
<li>JavaScript (ES6+) и TypeScript</li>
<li>React.js и экосистема (Redux, Next.js)</li>
<li>Vue.js и Vuex</li>
<li>HTML5, CSS3, Sass, TailwindCSS</li>
<li>Работа с REST и GraphQL API</li>
<li>Тестирование (Jest, Cypress)</li>
</ul>
</div>
</div>
</div>
<!-- Индикатор набора сообщения -->
<div class="flex items-center pl-10">
<div class="typing-indicator">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<!-- Поле ввода -->
<div class="border-t claude-border p-4 bg-gray-50">
<div class="flex items-center">
<input type="text" placeholder="Напишите сообщение..." class="flex-grow px-4 py-2 rounded-lg border claude-border focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
<button class="ml-2 w-10 h-10 rounded-lg bg-indigo-600 text-white flex items-center justify-center hover:bg-indigo-700 transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<!-- Обо мне -->
<section id="about" class="bg-white rounded-xl shadow-sm p-6 mb-8">
<h2 class="text-2xl font-semibold mb-4 claude-primary">Обо мне</h2>
<div class="flex flex-col md:flex-row gap-6">
<div class="md:w-1/3">
<div class="w-full h-64 bg-indigo-100 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Фото" class="w-full h-full object-cover">
</div>
</div>
<div class="md:w-2/3">
<p class="mb-4">Я passionate frontend разработчик с более чем 5-летним опытом создания современных веб-приложений. Моя цель - создавать интуитивно понятные, эстетичные и высокопроизводительные пользовательские интерфейсы.</p>
<p class="mb-4">В своей работе я уделяю особое внимание качеству кода, производительности и доступности. Я верю, что хороший продукт - это сочетание отличного UX и чистого, поддерживаемого кода.</p>
<div class="flex space-x-4">
<a href="#" class="px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition flex items-center">
<i class="fas fa-file-download mr-2"></i> Резюме
</a>
<a href="#contact" class="px-4 py-2 border border-indigo-600 text-indigo-600 rounded-lg hover:bg-indigo-50 transition flex items-center">
<i class="fas fa-envelope mr-2"></i> Связаться
</a>
</div>
</div>
</div>
</section>
<!-- Навыки -->
<section id="skills" class="bg-white rounded-xl shadow-sm p-6 mb-8">
<h2 class="text-2xl font-semibold mb-6 claude-primary">Навыки</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- Технические навыки -->
<div class="border claude-border rounded-lg p-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-code text-indigo-600"></i>
</div>
<h3 class="font-medium">Технические</h3>
</div>
<div class="space-y-2">
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">JavaScript</span>
<span class="text-sm text-gray-500">95%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">React</span>
<span class="text-sm text-gray-500">90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Vue.js</span>
<span class="text-sm text-gray-500">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
</div>
<!-- Дизайн -->
<div class="border claude-border rounded-lg p-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-paint-brush text-indigo-600"></i>
</div>
<h3 class="font-medium">Дизайн</h3>
</div>
<div class="space-y-2">
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">UI/UX</span>
<span class="text-sm text-gray-500">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Figma</span>
<span class="text-sm text-gray-500">80%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 80%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Adobe XD</span>
<span class="text-sm text-gray-500">75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<!-- Языки -->
<div class="border claude-border rounded-lg p-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-language text-indigo-600"></i>
</div>
<h3 class="font-medium">Языки</h3>
</div>
<div class="space-y-2">
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Английский</span>
<span class="text-sm text-gray-500">C1</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Русский</span>
<span class="text-sm text-gray-500">Родной</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-sm">Немецкий</span>
<span class="text-sm text-gray-500">B1</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 60%"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Проекты -->
<section id="projects" class="bg-white rounded-xl shadow-sm p-6 mb-8">
<h2 class="text-2xl font-semibold mb-6 claude-primary">Проекты</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Проект 1 -->
<div class="border claude-border rounded-lg overflow-hidden hover:shadow-md transition">
<div class="h-48 bg-indigo-100 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Проект 1" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">E-commerce платформа</h3>
<p class="text-gray-600 mb-3">Полнофункциональная платформа электронной коммерции с корзиной, платежами и системой рекомендаций.</p>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">React</span>
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">Node.js</span>
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">MongoDB</span>
</div>
<a href="#" class="text-indigo-600 font-medium flex items-center hover:text-indigo-800 transition">
Подробнее <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
<!-- Проект 2 -->
<div class="border claude-border rounded-lg overflow-hidden hover:shadow-md transition">
<div class="h-48 bg-indigo-100 overflow-hidden">
<img src="https://images.unsplash.com/photo-1522542550221-31fd19575a2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Проект 2" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Аналитическая панель</h3>
<p class="text-gray-600 mb-3">Интерактивная панель управления с графиками, таблицами и возможностью фильтрации данных в реальном времени.</p>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">Vue.js</span>
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">D3.js</span>
<span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">Firebase</span>
</div>
<a href="#" class="text-indigo-600 font-medium flex items-center hover:text-indigo-800 transition">
Подробнее <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
</div>
<div class="mt-6 text-center">
<a href="#" class="inline-flex items-center px-4 py-2 border border-indigo-600 text-indigo-600 rounded-lg hover:bg-indigo-50 transition">
<i class="fas fa-folder-open mr-2"></i> Все проекты
</a>
</div>
</section>
<!-- Контакты -->
<section id="contact" class="bg-white rounded-xl shadow-sm p-6">
<h2 class="text-2xl font-semibold mb-6 claude-primary">Контакты</h2>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<p class="mb-6">Если у вас есть вопросы или вы хотите обсудить потенциальный проект, не стесняйтесь связаться со мной.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-envelope text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<a href="mailto:ivan@example.com" class="text-indigo-600 hover:underline">ivan@example.com</a>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-phone text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Телефон</h4>
<a href="tel:+79991234567" class="text-indigo-600 hover:underline">+7 (999) 123-45-67</a>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-map-marker-alt text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Локация</h4>
<p>Москва, Россия</p>
</div>
</div>
</div>
<div class="mt-6 flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-indigo-100 text-indigo-600 flex items-center justify-center hover:bg-indigo-200 transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-indigo-100 text-indigo-600 flex items-center justify-center hover:bg-indigo-200 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-indigo-100 text-indigo-600 flex items-center justify-center hover:bg-indigo-200 transition">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-indigo-100 text-indigo-600 flex items-center justify-center hover:bg-indigo-200 transition">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
<div class="md:w-1/2">
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Имя</label>
<input type="text" id="name" class="w-full px-4 py-2 rounded-lg border claude-border focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 rounded-lg border claude-border focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Сообщение</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg border claude-border focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"></textarea>
</div>
<button type="submit" class="w-full px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition flex items-center justify-center">
<i class="fas fa-paper-plane mr-2"></i> Отправить
</button>
</form>
</div>
</div>
</section>
</div>
</main>
<!-- Подвал -->
<footer class="bg-gray-50 py-6 px-4 border-t claude-border">
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p class="text-gray-600">© 2023 Иван Иванов. Все права защищены.</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-600 hover:text-indigo-600 transition">Политика конфиденциальности</a>
<a href="#" class="text-gray-600 hover:text-indigo-600 transition">Условия использования</a>
</div>
</div>
</div>
</footer>
<script>
// Простая анимация для имитации набора сообщения
document.addEventListener('DOMContentLoaded', function() {
const typingIndicator = document.querySelector('.typing-indicator');
setTimeout(() => {
typingIndicator.style.display = 'none';
// Создаем новое сообщение от ассистента
const messagesContainer = document.querySelector('.space-y-4');
const assistantMessage = document.createElement('div');
assistantMessage.className = 'flex';
assistantMessage.innerHTML = `
<div class="mr-2 mt-2">
<div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600 text-sm"></i>
</div>
</div>
<div class="assistant-bubble message-bubble max-w-3xl px-4 py-3">
<p>Я всегда открыт для новых возможностей и сотрудничества. Если у вас есть интересный проект или вы хотите обсудить что-то, свяжитесь со мной через контакты ниже!</p>
</div>
`;
messagesContainer.appendChild(assistantMessage);
// Прокручиваем вниз
messagesContainer.scrollTop = messagesContainer.scrollHeight;
}, 2000);
// Обработка отправки формы
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Сообщение отправлено! Я свяжусь с вами в ближайшее время.');
form.reset();
});
}
});
</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=rvenie/gpt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |