33879-vm/index.php
Flatlogic Bot 7986eb35fc main
2025-09-04 09:36:27 +00:00

164 lines
4.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
$now = date('Y-m-d H:i:s');
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Янина — QA-инженер из Сакартвело</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #1a1a1a;
--primary-color: #ff4b4b;
--text-color: #f0f0f0;
--card-bg-color: rgba(40, 40, 40, 0.8);
--card-border-color: rgba(255, 255, 255, 0.1);
}
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
box-sizing: border-box;
}
main {
max-width: 800px;
width: 100%;
}
.card {
background: var(--card-bg-color);
border: 1px solid var(--card-border-color);
border-radius: 24px;
padding: 2rem 3rem;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
text-align: left;
}
.header {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 2rem;
}
.khinkali-icon {
font-size: 4rem;
animation: spin 8s linear infinite;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin: 0;
color: var(--primary-color);
}
h1 span {
font-size: 1.5rem;
color: var(--text-color);
display: block;
font-weight: 400;
}
h2 {
font-size: 1.5rem;
color: var(--primary-color);
margin-top: 2rem;
margin-bottom: 1rem;
border-bottom: 2px solid var(--card-border-color);
padding-bottom: 0.5rem;
}
p, ul {
line-height: 1.8;
font-size: 1.1rem;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: rgba(0,0,0,0.2);
padding: 10px 15px;
border-radius: 8px;
margin-bottom: 8px;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
}
.contact-links a {
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
margin: 0 10px;
font-size: 1.2rem;
}
.contact-links a:hover {
text-decoration: underline;
}
footer {
margin-top: 2rem;
font-size: 0.9rem;
opacity: 0.6;
text-align: center;
}
</style>
</head>
<body>
<main>
<div class="card">
<div class="header">
<div class="khinkali-icon">🥟</div>
<h1>
Янина
<span>QA-инженер из солнечного Сакартвело</span>
</h1>
</div>
<h2>Обо мне</h2>
<p>
Привет! Я Янина, и я нахожу баги быстрее, чем вы успеваете сказать "Гамарджоба". Живу в Грузии, вдохновляюсь горами, вином и идеально работающим софтом. Моя цель — делать цифровые продукты безупречными.
</p>
<h2>Ключевые навыки</h2>
<div class="skills-grid">
<ul>
<li>API (Postman, Swagger)</li>
<li>SQL (MySQL, PostgreSQL)</li>
<li>Jira & Confluence</li>
</ul>
<ul>
<li>Mobile Testing (iOS, Android)</li>
<li>Test Design & Strategy</li>
<li>Agile & Scrum</li>
</ul>
</div>
<h2>Связаться со мной</h2>
<p class="contact-links">
<a href="#">LinkedIn</a>
<a href="#">Telegram</a>
<a href="#">GitHub</a>
</p>
</div>
<footer>
Сделано с любовью и хинкали. <?= htmlspecialchars($now) ?> (UTC)
</footer>
</main>
</body>
</html>