import { cn } from "@/lib/utils"; type Props = { className?: string; }; /** * Curved green / white bands like the GRV logo topography. * Overlaps the top of the footer — no straight stripe bar. */ export function FooterTopographicBand({ className }: Props) { const contour = "rgba(255,255,255,0.35)"; return (
{/* Alternating curved bands (logo-style flow, not vertical stripes) */} {/* Logo-like contour strokes */} {/* Fade into solid footer green */}
); }