"use client"; import { NodeKind } from "lib/ai/workflow/workflow.interface"; import { useMemo } from "react"; import { useTranslations } from "next-intl"; import { Tooltip, TooltipContent, TooltipTrigger } from "ui/tooltip"; import { NodeIcon } from "./node-icon"; import { BlocksIcon, ChevronsLeftRightEllipsisIcon, Terminal, } from "lucide-react"; import { TextShimmer } from "ui/text-shimmer"; export function WorkflowGreeting() { const t = useTranslations(); const descriptions = useMemo(() => { return t.raw("Workflow.kindsDescription") ?? {}; }, [t]); return (
{t("Workflow.createWorkflowDescription")}
{t("Workflow.greeting.buildAutomationDescription")}
{t("Workflow.greeting.chatbotToolDescription")}
{t("Workflow.greeting.parameterBasedDescription")}
{t("Workflow.greeting.exampleDescription")}
{t("Workflow.greeting.ctaMessage")}