import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; type Props = { children: ReactNode; className?: string; }; /** White panel so footer copy and icons stay readable over the geometric pattern. */ export function FooterSurface({ children, className }: Props) { return (