/* * @Author: ZhaoYing * @Date: 2026-02-02 15:13:20 * @Last Modified by: ZhaoYing * @Last Modified time: 2026-02-02 15:13:20 */ /** * LayoutBg Component * * A decorative background component that displays styled background elements. * Provides visual aesthetics with positioned decorative shapes. * * @component */ import { type FC } from 'react'; import clsx from 'clsx'; import styles from './layout.module.css'; /** * Background layout component with decorative elements. * Renders a fixed full-screen background with styled shapes. */ const LayoutBg: FC = () => { return (
{/* Top section with decorative background shapes */}
{/* Left decorative element 1 */}
{/* Left decorative element 2 */}
{/* Right decorative element */}
) }; export default LayoutBg;