import React from "react"; interface SuggestionBoxProps { title: string; content: React.ReactNode; } export function SuggestionBox({ title, content }: SuggestionBoxProps) { return (