File size: 1,143 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 (
    <div className="flex flex-col gap-6 h-full px-4 items-center justify-center">

      <div className="flex flex-col items-center p-4 bg-neutral-700 rounded-xl w-full">

        <BuildIt width={45} height={54} />

        <span className="font-semibold text-[20px] leading-6 -tracking-[0.01em] gap-1">

          {t(I18nKey.LANDING$TITLE)}

        </span>

      </div>

      <Suggestions

        suggestions={Object.entries(SUGGESTIONS.repo)

          .slice(0, 4)

          .map(([label, value]) => ({

            label,

            value,

          }))}

        onSuggestionClick={onSuggestionsClick}

      />

    </div>
  );
}