import { useTranslation } from "react-i18next"; import { Suggestions } from "#/components/features/suggestions/suggestions"; import { I18nKey } from "#/i18n/declaration"; import BuildIt from "#/icons/build-it.svg?react"; import { SUGGESTIONS } from "#/utils/suggestions"; interface ChatSuggestionsProps { onSuggestionsClick: (value: string) => void; } export function ChatSuggestions({ onSuggestionsClick }: ChatSuggestionsProps) { const { t } = useTranslation(); return (
{t(I18nKey.LANDING$TITLE)}
({ label, value, }))} onSuggestionClick={onSuggestionsClick} />
); }