"use client"; import { TopographicPattern } from "@/components/brand/TopographicPattern"; import { SITE_TOPO_PATTERN } from "@/content/topo-patterns"; import { cn } from "@/lib/utils"; type Props = { introPhase: "intro" | "settled" | "static"; className?: string; }; export function HeroTopographyBackground({ introPhase, className }: Props) { return (
); }