From 8b5ed3c627451ae1926b5c1a80df2ed3262a8e3a Mon Sep 17 00:00:00 2001 From: "diana.dolgolyova" Date: Mon, 23 Mar 2026 16:28:56 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20add=20=D0=93=D0=BB=D0=B0=D0=B2=D0=BD?= =?UTF-8?q?=D0=B0=D1=8F=20and=20=D0=94=D0=B5=D0=BD=D1=8C=20=D0=BE=D1=82?= =?UTF-8?q?=D0=BA=D1=80=D1=8B=D1=82=D1=8B=D1=85=20=D0=B4=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D0=B5=D0=B9=20nav=20links,=20match=20page=20section=20order?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/sections/Hero.tsx | 2 +- src/lib/constants.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/sections/Hero.tsx b/src/components/sections/Hero.tsx index 0269556..a7b2457 100644 --- a/src/components/sections/Hero.tsx +++ b/src/components/sections/Hero.tsx @@ -78,7 +78,7 @@ export function Hero({ data: hero }: HeroProps) { }, [scrollToNext]); return ( -
+
{/* Videos render only after hydration to avoid SSR mismatch */} {mounted && ( <> diff --git a/src/lib/constants.ts b/src/lib/constants.ts index b367c1a..42f3a08 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -8,6 +8,8 @@ export const BRAND = { } as const; export const NAV_LINKS: NavLink[] = [ + { label: "Главная", href: "#hero" }, + { label: "День открытых дверей", href: "#open-day" }, { label: "О нас", href: "#about" }, { label: "Команда", href: "#team" }, { label: "Направления", href: "#classes" },