diff --git a/src/app/[locale]/pages/faq/page.tsx b/src/app/[locale]/pages/faq/page.tsx index 54e4e27..620a2e9 100644 --- a/src/app/[locale]/pages/faq/page.tsx +++ b/src/app/[locale]/pages/faq/page.tsx @@ -1,6 +1,7 @@ import PageTitle from '@/app/ui/page-title'; import PopularAskedQuestions from '@/app/ui/faq/popular-asked-questions'; import FrequentlyAskedQuestions from '@/app/ui/faq/frequently-asked-questions'; +import FaqContact from '@/app/ui/faq/faq-contact'; export default function Page() { return ( @@ -8,6 +9,7 @@ export default function Page() { + ) } \ No newline at end of file diff --git a/src/app/styles/pages-styles.scss b/src/app/styles/pages-styles.scss index d1eb254..e8084c1 100644 --- a/src/app/styles/pages-styles.scss +++ b/src/app/styles/pages-styles.scss @@ -4595,4 +4595,73 @@ padding: 15px; } } +} + +.support-block { + background: linear-gradient(135deg, #f0f9ff, #e0f2fe); + border-radius: 20px; + padding: 30px; + text-align: center; + margin-top: 40px; + + h3 { + color: #0369a1; + margin-bottom: 15px; + font-size: 20px; + } + + p { + color: #0c4a6e; + margin-bottom: 25px; + line-height: 1.6; + } + + .support-buttons { + display: flex; + gap: 15px; + justify-content: center; + flex-wrap: wrap; + } + + .support-schedule { + margin-top: 25px; + padding-top: 20px; + border-top: 1px solid rgba(3, 105, 161, 0.2); + + h4 { + color: #0369a1; + margin-bottom: 10px; + font-size: 16px; + } + + &-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 15px; + font-size: 14px; + color: #0c4a6e; + } + } +} + +.stats-mini { + &-wrapper { + display: flex; + justify-content: center; + margin-top: 30px; + } + + &-content { + display: flex; + gap: 40px; + } + + &-value { + font-size: 24px; + font-weight: 700; + } + + &-item { + text-align: center; + } } \ No newline at end of file diff --git a/src/app/ui/faq/faq-contact.tsx b/src/app/ui/faq/faq-contact.tsx new file mode 100644 index 0000000..8a25a5d --- /dev/null +++ b/src/app/ui/faq/faq-contact.tsx @@ -0,0 +1,53 @@ +export default function FaqContact() { + return ( + <> +
+

Не нашли ответ на свой вопрос?

+

+ Наша команда поддержки работает 24/7 и готова помочь вам +
+ с любыми вопросами по использованию платформы NO COPY. +

+
+ + + 📞 Позвонить: 8 (800) 302-10-90 + +
+ +
+

Время работы поддержки:

+
+
📧 E-mail: круглосуточно
+
📞 Телефон: 9:30 - 18:00 МСК
+
💬 Чат: 9:30 - 18:00 МСК
+
+
+
+ +
+
+
+
+ 18
+
Вопросов в базе
+
+
+
+ 99% +
+
Находят ответ
+
+
+
+ 24/7 +
+
Поддержка
+
+
+
+ + ) +} \ No newline at end of file