/** * 回到顶部浮动按钮(前台两页共用,此前 Matches/Standings 各复制一份)。 * 方角纸片风:去掉早期版本的 rounded-full + shadow-lg,与全站方角 * 无阴影语言对齐;出现/隐藏仅动画 transform 与 opacity。 * * 滚动监听已抽到 `lib/useScroll` 的 useWindowScrollY —— 全站三处 * 滚动监听此前各自实现一遍生命周期,现统一为单一来源。 */ import { useWindowScrollY } from '../lib/useScroll' export default function BackTop({ threshold = 300 }: { threshold?: number }) { const scrollY = useWindowScrollY() const show = scrollY > threshold return ( ) }