"use client"; import { cn } from "@app/lib/cn"; export function InfoSections({ children, cols }: { children: React.ReactNode; cols?: number; }) { 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}
); }