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