From 3bfe86abb9c4bb3c3c0e1215dea1aeb274352da1 Mon Sep 17 00:00:00 2001 From: sysadminix Date: Mon, 2 Feb 2026 12:37:11 +0300 Subject: [PATCH] first2 --- frontend/app/(protected)/alerts/page.tsx | 2 +- frontend/components/ui/AnimatedBackground.tsx | 62 +++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 frontend/components/ui/AnimatedBackground.tsx diff --git a/frontend/app/(protected)/alerts/page.tsx b/frontend/app/(protected)/alerts/page.tsx index 1912ae8..b7fad82 100644 --- a/frontend/app/(protected)/alerts/page.tsx +++ b/frontend/app/(protected)/alerts/page.tsx @@ -209,4 +209,4 @@ const AlertsPage: React.FC = () => { ) } -export default AlertsPage \ No newline at end of file +export default AlertsPage diff --git a/frontend/components/ui/AnimatedBackground.tsx b/frontend/components/ui/AnimatedBackground.tsx new file mode 100644 index 0000000..7dca8b6 --- /dev/null +++ b/frontend/components/ui/AnimatedBackground.tsx @@ -0,0 +1,62 @@ +import React from 'react' + +const AnimatedBackground: React.FC = () => { + return ( + <> + + + {/* Фоновый градиент - многоуровневый */} +
+ + {/* Второй слой градиента */} +
+ + {/* Основные светящиеся орбиты */} +
+
+
+ + {/* Дополнительные акцентные элементы */} +
+
+ + {/* Сетка с градиентом */} +
+ + {/* Диагональные линии */} +
+ + {/* Центральный светящийся элемент */} +
+ + ) +} + +export default AnimatedBackground