import * as React from "react" import { cn } from "@/lib/utils" type InfoStripItem = { /** self-contained visual (asset-kit render / icon) */ media: React.ReactNode eyebrow: React.ReactNode title: React.ReactNode } /** * Wide white strip directly under a hero: hairline-divided columns (2 up on * mobile, 3 from `sm`, 5 from `lg`), each a glass render over a teal eyebrow * and a navy title. Dividers are drawn per column for the current layout so * they stay inset from the card's padding. */ function InfoStrip({ items, className, }: { items: InfoStripItem[] className?: string }) { return (
{item.eyebrow}