264 lines
8.0 KiB
HTML
264 lines
8.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Флагманские проекты">
|
|
<link rel="icon" type="image/png" href="img/icon.png">
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<title>Флагманские проекты</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 20px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
min-height: 100vh;
|
|
background: linear-gradient(to bottom, #1a1a2e, #16213e);
|
|
color: white;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding-top: 0px;
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
nav {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
nav a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
nav a.brand {
|
|
font-family: 'Space Grotesk', monospace;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
color: #e94560;
|
|
}
|
|
|
|
nav a.brand:hover {
|
|
color: #ff6b81;
|
|
}
|
|
|
|
main {
|
|
padding: 2rem 0;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 10px;
|
|
padding: 2rem;
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 1rem 0;
|
|
margin-top: 2rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.project-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.project-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 10px;
|
|
padding: 1.5rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.project-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.project-card h3 {
|
|
color: #e94560;
|
|
margin-top: 0;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.project-card p {
|
|
margin-bottom: 1.5rem;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.project-card .more-link {
|
|
display: inline-block;
|
|
color: #e94560;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.project-card .more-link:hover {
|
|
color: #ff6b81;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.project-card img {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 10px;
|
|
}
|
|
|
|
nav ul {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
nav a {
|
|
font-size: 1.2rem;
|
|
padding: 0.8rem 1.5rem;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
main {
|
|
padding: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.project-card {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.project-card img {
|
|
width: 150px;
|
|
height: 150px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.project-card-text {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.github-link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.github-link:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.github-link img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html" class="brand">Micialware</a></li>
|
|
<li><a href="flagships.html">Флагманы</a></li>
|
|
<li><a href="index.html#projects">Другие проекты</a></li>
|
|
<li><a href="services.html">Услуги</a></li>
|
|
<li><a href="https://github.com/YaslePoy" class="github-link" target="_blank"><img src="img/github-mark-white.svg" alt="GitHub">GitHub</a></li>
|
|
</ul>
|
|
</nav>
|
|
<h1>Флагманские проекты</h1>
|
|
<h2>Основные проекты, которым уделяется наибольшее внимание</h2>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="project-grid">
|
|
<div class="project-card">
|
|
<img src="img/mroaLogo.png" alt="mROA" />
|
|
<div class="project-card-text">
|
|
<h3>mROA</h3>
|
|
<p>Основной проект, над которым я работаю в настоящее время. Это на данный момент такой типо gRPC с
|
|
блекджеком и ООП. И тут реально очень сильно развита тема объектно-ориентированного
|
|
программировани, как она представлена конкретно в C# на данный момент, но по сети. Данная
|
|
библиотека может использоваться например для очень простого внедрения микросерсной архитектуры в
|
|
ASP.NET Core например при помощи DI или в других случаях взаимодействия по сети.</p>
|
|
<a href="mroa.html" class="more-link">Подробнее →</a>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="project-card">
|
|
<img src="img/mroacgtLogo.png" alt="mROA.CodegenTools" />
|
|
<div class="project-card-text">
|
|
<h3>mROA.CodegenTools</h3>
|
|
<p>Инструментарий для генерации кода, разрабатываемый в рамках проекта mROA. Здесь будет описание
|
|
функциональности и возможностей инструмента.</p>
|
|
<a href="#" class="more-link">Подробнее →</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 Моя страница. Наверное какие-то права защищены!!! <span id="random-emoji"></span></p>
|
|
</footer>
|
|
|
|
<script src="scripts.js"></script>
|
|
</body>
|
|
|
|
</html> |