ваше сообщение коммита

This commit is contained in:
2025-07-27 03:30:13 +03:00
parent 057fe6254c
commit 1835632be9
141 changed files with 32514 additions and 6661 deletions

View File

@@ -22,6 +22,11 @@
<p>Интеграция с блокчейн-сетями, RPC, токены и смарт-контракты.</p>
<button class="details-btn" @click="$router.push('/settings/blockchain')">Подробнее</button>
</div>
<div class="main-block">
<h3>Блокчейн 2</h3>
<p>Современный DLE v2 - единый смарт-контракт с встроенной системой голосования.</p>
<button class="details-btn details-btn-secondary" @click="$router.push('/settings/dle-v2-deploy')">Подробнее</button>
</div>
<div class="main-block">
<h3>Безопасность</h3>
<p>Управление доступом, токенами, аутентификацией и правами.</p>
@@ -32,62 +37,14 @@
<p>Настройки серверов, хостинга и публикации приложения.</p>
<button class="details-btn" @click="$router.push('/settings/interface')">Подробнее</button>
</div>
<div class="main-block copyright-block">
<h3>© Авторские права</h3>
<p>Информация об авторских правах и лицензировании проекта DLE.</p>
<div class="copyright-info">
<p><strong>Автор:</strong> Тарабанов Александр Викторович</p>
<p><strong>Email:</strong> info@hb3-accelerator.com</p>
<p><strong>Сайт:</strong> <a href="https://hb3-accelerator.com" target="_blank">hb3-accelerator.com</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/HB3-ACCELERATOR" target="_blank">@HB3-ACCELERATOR</a></p>
</div>
<button class="details-btn" @click="showCopyrightModal = true">Подробнее</button>
</div>
</div>
<!-- Модальное окно с информацией об авторских правах -->
<div v-if="showCopyrightModal" class="modal-overlay" @click="showCopyrightModal = false">
<div class="modal-content" @click.stop>
<div class="modal-header">
<h2>© Авторские права DLE</h2>
<button class="close-btn" @click="showCopyrightModal = false">&times;</button>
</div>
<div class="modal-body">
<div class="copyright-section">
<h3>Основная информация</h3>
<p><strong>Автор:</strong> Тарабанов Александр Викторович</p>
<p><strong>Период:</strong> 2024-2025</p>
<p><strong>Статус:</strong> Проприетарное программное обеспечение</p>
</div>
<div class="copyright-section">
<h3>Контакты</h3>
<p><strong>Email:</strong> <a href="mailto:info@hb3-accelerator.com">info@hb3-accelerator.com</a></p>
<p><strong>Сайт:</strong> <a href="https://hb3-accelerator.com" target="_blank">hb3-accelerator.com</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/HB3-ACCELERATOR" target="_blank">@HB3-ACCELERATOR</a></p>
</div>
<div class="copyright-section">
<h3>Условия использования</h3>
<p> <strong>Разрешено:</strong> Использование в бизнесе для внутренних операций</p>
<p> <strong>Запрещено:</strong> Перепродажа, модификация, копирование без разрешения</p>
<p>📋 <strong>Требуется:</strong> Разрешение автора для коммерческого использования</p>
</div>
<div class="copyright-section">
<h3>Лицензирование</h3>
<p>Для получения коммерческой лицензии обращайтесь к автору по указанным контактам.</p>
<p>Все права защищены. Несанкционированное использование запрещено.</p>
</div>
</div>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
const showCopyrightModal = ref(false);
// Компонент настроек
</script>
<style scoped>
@@ -107,8 +64,14 @@ const showCopyrightModal = ref(false);
flex-direction: column;
align-items: flex-start;
}
.details-btn {
.button-group {
margin-top: 1.5rem;
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.details-btn {
background: var(--color-primary);
color: #fff;
border: none;
@@ -117,121 +80,25 @@ const showCopyrightModal = ref(false);
cursor: pointer;
font-size: 1rem;
transition: background 0.2s;
margin: 0;
}
.details-btn:hover {
background: var(--color-primary-dark);
}
.copyright-block {
border-left: 4px solid var(--color-primary);
.details-btn-secondary {
background: #6c757d;
}
.copyright-info {
margin: 1rem 0;
padding: 1rem;
background: #f8f9fa;
border-radius: 6px;
font-size: 0.9rem;
.details-btn-secondary:hover {
background: #5a6268;
}
.copyright-info p {
margin: 0.5rem 0;
/* Для блоков без группы кнопок */
.main-block .details-btn:not(.button-group .details-btn) {
margin-top: 1.5rem;
}
.copyright-info a {
color: var(--color-primary);
text-decoration: none;
}
.copyright-info a:hover {
text-decoration: underline;
}
/* Модальное окно */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal-content {
background: white;
border-radius: 12px;
max-width: 600px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid #eee;
}
.modal-header h2 {
margin: 0;
color: var(--color-primary);
}
.close-btn {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: #666;
padding: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
.close-btn:hover {
color: #333;
}
.modal-body {
padding: 1.5rem;
}
.copyright-section {
margin-bottom: 2rem;
}
.copyright-section h3 {
color: var(--color-primary);
margin-bottom: 1rem;
font-size: 1.1rem;
}
.copyright-section p {
margin: 0.5rem 0;
line-height: 1.5;
}
.copyright-section a {
color: var(--color-primary);
text-decoration: none;
}
.copyright-section a:hover {
text-decoration: underline;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>