"use client"; import type { CSSProperties } from "react"; import { MAIN_WHITE_PATTERN_SRC } from "@/content/topo-patterns"; import { cn } from "@/lib/utils"; type Props = { introPhase: "intro" | "settled" | "static"; className?: string; hoverActive?: boolean; hoverX?: number; hoverY?: number; }; export function HeroTopographyBackground({ introPhase, className, hoverActive = false, hoverX = 50, hoverY = 50, }: Props) { return (