import { buildWavyTessellationMesh } from "@/components/brand/WavyTessellationMesh"; import { cn } from "@/lib/utils"; type Props = { className?: string; }; /** Wavy interlocking tessellation across the green footer (GRV palette). */ const FOOTER_MESH = buildWavyTessellationMesh(20, 38, 100, 100, { diagonalSkew: 0.85, amplitude: 0.68, }); export function FooterTopoPattern({ className }: Props) { return (
{FOOTER_MESH.map((cell, i) => ( ))}
); }