import { ReactNode } from "react" import { cn } from "@/lib/utils" export function SectionTitle({ className, children }: { className?: string children: ReactNode }) { return (
{children}
) }