-
© 2024 SmartSolTech. All rights reserved.
+
+
+ © 2025 SmartSolTech. Все права защищены.
+
-
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/smartsoltech/web/templates/web/header.html b/smartsoltech/web/templates/web/header.html
deleted file mode 100644
index 3076083..0000000
--- a/smartsoltech/web/templates/web/header.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
diff --git a/smartsoltech/web/templates/web/home.html b/smartsoltech/web/templates/web/home.html
index c512e93..856938c 100644
--- a/smartsoltech/web/templates/web/home.html
+++ b/smartsoltech/web/templates/web/home.html
@@ -1,6 +1,226 @@
-
{% extends 'web/base_modern.html' %}
{% load static %}
+
+{% block title %}SmartSolTech - Инновационные технологические решения{% endblock %}
+
+{% block content %}
+
+
+ {% if hero_banners %}
+
+
+ {% for banner in hero_banners %}
+
+ {% if banner.video %}
+
+ {% elif banner.image %}
+

+ {% endif %}
+
+
+
+
+
+
+
{{ banner.title }}
+
{{ banner.subtitle }}
+ {% if banner.button_text and banner.button_url %}
+
+ {{ banner.button_text }}
+
+ {% endif %}
+
+
+
+
+
+ {% endfor %}
+
+
+
+ {% if hero_banners|length > 1 %}
+
+
+ {% for banner in hero_banners %}
+
+ {% endfor %}
+
+
+ {% endif %}
+
+ {% else %}
+
+
+
+
+
+
+
+
SmartSolTech
+
Инновационные технологические решения для вашего бизнеса
+
+ Наши услуги
+
+
+
+
+
+
+ {% endif %}
+
+
+
+
+
+
+
+ Наши услуги
+
+
+ Предоставляем полный спектр IT-решений
+
+
+
+
+ {% for service in services %}
+
+
+
+
+
+
+
{{ service.name }}
+
{{ service.description|truncatewords:15 }}
+
+ Подробнее
+
+
+
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+
+ О SmartSolTech
+
+
+ Мы - команда профессионалов, специализирующихся на создании
+ инновационных технологических решений для бизнеса.
+
+
+
+
+
+ Индивидуальный подход
+
+
+
+
+
+ Современные технологии
+
+
+
+
+
+ Качественная поддержка
+
+
+
+
+
+ Соблюдение сроков
+
+
+
+
+ Узнать больше
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+
+
+ Готовы воплотить ваши идеи в жизнь?
+
+
+ Свяжитесь с нами для бесплатной консультации
+
+
+
+
+
+ Наши услуги
+
+
+
+
+
+
+
+
+{% include 'web/modal_order_form.html' %}
+{% endblock %}
+
+{% block extra_scripts %}
+
+{% endblock %}
+{% load static %}
{% block title %}SmartSolTech - IT Solutions{% endblock %}
{% block content %}
diff --git a/smartsoltech/web/templates/web/modal_order_form.html b/smartsoltech/web/templates/web/modal_order_form.html
index 01c47ee..5010f2e 100644
--- a/smartsoltech/web/templates/web/modal_order_form.html
+++ b/smartsoltech/web/templates/web/modal_order_form.html
@@ -1,99 +1,157 @@
{% load static %}
-
-
-
-
-
-
-
-
Модальное окно для заявки на услугу
-
-
-
-
-
-
-
-
-
×
-
Заявка успешно создана!
-
Ваши данные были отправлены и заявка зарегистрирована. Пожалуйста, проверьте ваш Telegram для получения подтверждения.
-
-
+
-
-
-
-
\ No newline at end of file
+// Form submission handling
+document.addEventListener('DOMContentLoaded', function() {
+ const form = document.getElementById('serviceRequestForm');
+ if (form) {
+ form.addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ const formData = new FormData(this);
+ const submitBtn = document.querySelector('button[type="submit"][form="serviceRequestForm"]');
+ const originalContent = submitBtn.innerHTML;
+
+ submitBtn.innerHTML = '
Отправляем...';
+ submitBtn.disabled = true;
+
+ // Get CSRF token
+ const csrfToken = document.querySelector('[name=csrfmiddlewaretoken]').value;
+
+ // Submit form logic would go here
+ // This is a placeholder for the actual submission logic
+
+ // Reset button after delay (placeholder)
+ setTimeout(() => {
+ submitBtn.innerHTML = originalContent;
+ submitBtn.disabled = false;
+ }, 2000);
+ });
+ }
+});
+
\ No newline at end of file
diff --git a/smartsoltech/web/templates/web/navbar.html b/smartsoltech/web/templates/web/navbar.html
index 711d9ad..bd5e615 100644
--- a/smartsoltech/web/templates/web/navbar.html
+++ b/smartsoltech/web/templates/web/navbar.html
@@ -1,14 +1,127 @@
{% load static %}
-