diff --git a/frontend/index.html b/frontend/index.html
index 1a0e2dc..9413ac4 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -13,6 +13,19 @@
+
+
+
+
diff --git a/frontend/public/documents/diploma_bachelor.pdf b/frontend/public/documents/diploma_bachelor.pdf
new file mode 100644
index 0000000..d1453c4
Binary files /dev/null and b/frontend/public/documents/diploma_bachelor.pdf differ
diff --git a/frontend/public/documents/diploma_retraining.pdf b/frontend/public/documents/diploma_retraining.pdf
new file mode 100644
index 0000000..0485991
Binary files /dev/null and b/frontend/public/documents/diploma_retraining.pdf differ
diff --git a/frontend/public/images/psychologist.jpg b/frontend/public/images/psychologist.jpg
new file mode 100644
index 0000000..a3730c0
Binary files /dev/null and b/frontend/public/images/psychologist.jpg differ
diff --git a/frontend/src/pages/home/components/AboutSection.tsx b/frontend/src/pages/home/components/AboutSection.tsx
index b1767ab..1bc30dd 100644
--- a/frontend/src/pages/home/components/AboutSection.tsx
+++ b/frontend/src/pages/home/components/AboutSection.tsx
@@ -2,8 +2,8 @@ import { useState } from "react";
import ScrollReveal from "@/components/feature/ScrollReveal";
const diplomas = [
- { label: "Диплом о высшем образовании" },
- { label: "Сертификат повышения квалификации" },
+ { label: "Диплом о высшем образовании", pdf: "/documents/diploma_bachelor.pdf" },
+ { label: "Диплом о проф. переподготовке", pdf: "/documents/diploma_retraining.pdf" },
];
export default function AboutSection() {
@@ -61,10 +61,11 @@ export default function AboutSection() {
{/* Large photo placeholder */}
-
-
- Фото психолога
-
+
@@ -101,23 +102,35 @@ export default function AboutSection() {
onClick={() => setPreviewIdx(null)}
>
e.stopPropagation()}
>
-
-
+
+
{diplomas[previewIdx].label}
-
+
+
-
- PDF будет доступен для просмотра в ближайшее время.
-
-
+
+ Открыть в новой вкладке
+
)}
diff --git a/frontend/src/pages/home/components/FooterSection.tsx b/frontend/src/pages/home/components/FooterSection.tsx
index 3eb36ae..c636f2c 100644
--- a/frontend/src/pages/home/components/FooterSection.tsx
+++ b/frontend/src/pages/home/components/FooterSection.tsx
@@ -1,11 +1,11 @@
import ScrollReveal from "@/components/feature/ScrollReveal";
const socials = [
- { icon: "ri-telegram-line", label: "Telegram" },
- { icon: "ri-vk-line", label: "ВКонтакте" },
- { icon: "ri-instagram-line", label: "Instagram" },
- { icon: "ri-message-3-line", label: "Макси" },
- { icon: "ri-article-line", label: "b17.ru" },
+ { icon: "ri-telegram-line", label: "Telegram", href: "https://t.me/iraintegraya" },
+ { icon: "ri-instagram-line", label: "Instagram", href: "https://www.instagram.com/irinaintegraa?igsh=ejEzcnJsbXRtc2Rk" },
+ { icon: "ri-message-3-line", label: "Макси", href: "https://max.ru/u/f9LHodD0cOLswlrgn_B8Te8oaQsgh5g8ebToTc0iQ-xPPyEmLp1WZAUYvmU" },
+ { icon: "ri-article-line", label: "b17.ru", href: "https://www.b17.ru/kochieva_irina/" },
+ { icon: "ri-telegram-fill", label: "Telegram канал", href: "https://t.me/pro_tebya_psy" },
];
export default function FooterSection() {
@@ -34,13 +34,17 @@ export default function FooterSection() {
{socials.map((s, i) => (
-
-
+
))}
diff --git a/frontend/src/pages/home/components/Navbar.tsx b/frontend/src/pages/home/components/Navbar.tsx
index 0475a40..90f245c 100644
--- a/frontend/src/pages/home/components/Navbar.tsx
+++ b/frontend/src/pages/home/components/Navbar.tsx
@@ -60,7 +60,7 @@ export default function Navbar() {