mirror of
https://github.com/langgenius/dify.git
synced 2025-07-25 18:39:19 +00:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import React from 'react'
|
|
|
|
const HeaderEffect = () => {
|
|
return (
|
|
<div className='absolute left-8 top-[-34px] size-[112px] bg-util-colors-blue-brand-blue-brand-500 opacity-20 blur-[80px]' />
|
|
)
|
|
}
|
|
|
|
export default React.memo(HeaderEffect)
|