// 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;