import React from "react"; interface SectionColumnsType { title: string; description?: string; children: React.ReactNode; } export function SectionColumns({ title, description, children, }: SectionColumnsType) { return (

{title}

{description}

{children}
); }