chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:37:47 +08:00
commit 7653f56fed
1422 changed files with 359026 additions and 0 deletions
@@ -0,0 +1,18 @@
"use client";
import { useState, useEffect } from "react";
import ScrambleText from "@/components/ui/motion/scramble-text";
export function UsageLoadingText({ text = "Loading..." }: { text?: string }) {
const [isInView, setIsInView] = useState(false);
useEffect(() => {
setIsInView(true);
}, []);
return (
<div className="text-xs text-zinc-500">
<ScrambleText text={text} delay={0} duration={1} isInView={isInView} />
</div>
);
}