import { useGlobal } from '@/lib/global' /** * 文章波浪动画 */ export default function WavesArea() { const { isDarkMode } = useGlobal() const color = isDarkMode ? '#18171d' : '#f7f9fe' return (
) }