"use client"; import React from "react"; import { cn } from "@/lib/utils"; interface InfoBoxProps extends React.HTMLAttributes { title: string; } export function InfoBox({ title, children, className, ...props }: InfoBoxProps) { return ( ); }