| 4 | import { $navigationHappened } from "@/utils/store" |
| 5 | |
| 6 | interface IntroTextProps { |
| 7 | text: string | string[] |
| 8 | className?: string |
| 9 | stagger?: number |
| 10 | delay?: number |
| 11 | duration?: number |
| 12 | } |
| 13 | export function IntroText(props: IntroTextProps) { |
| 14 | const { text, stagger: staggerAmount = 0.5, delay: start = 0.5, duration = 0.6 } = props |
| 15 | const textLines = typeof text === "string" ? [text] : text |
nothing calls this directly
no outgoing calls
no test coverage detected