"use client"; import { cn } from "@app/lib/cn"; export function InfoSections({ children, cols, columnSizing = "content" }: { children: React.ReactNode; cols?: number; /** content (default): fixed gap, columns hug content, left-aligned; fill: equal-width columns across the row */ columnSizing?: "fill" | "content"; }) { const n = cols || 1; const track = columnSizing === "fill" ? "minmax(0, 1fr)" : "minmax(0, max-content)"; return (
{children}
); } export function InfoSection({ children, className }: { children: React.ReactNode; className?: string; }) { return (
{children}
); } export function InfoSectionTitle({ children, className }: { children: React.ReactNode; className?: string; }) { return (
{children}
); } export function InfoSectionContent({ children, className }: { children: React.ReactNode; className?: string; }) { return (
{children}
); }