diff --git a/src/views/AgentChat/components/BackgroundEffects.js b/src/views/AgentChat/components/BackgroundEffects.js new file mode 100644 index 00000000..f9dc6b1c --- /dev/null +++ b/src/views/AgentChat/components/BackgroundEffects.js @@ -0,0 +1,59 @@ +// src/views/AgentChat/components/BackgroundEffects.js +// 背景渐变装饰层组件 + +import React from 'react'; +import { Box } from '@chakra-ui/react'; + +/** + * BackgroundEffects - 背景渐变装饰层 + * + * 包含主背景渐变和两个装饰光效(右上紫色、左下蓝色) + * + * @returns {JSX.Element} + */ +const BackgroundEffects = () => { + return ( + <> + {/* 主背景渐变层 */} + + + {/* 右上角紫色光效 */} + + + {/* 左下角蓝色光效 */} + + + ); +}; + +export default BackgroundEffects;