"use client" import { motion } from "motion/react" import { ArrowRight } from "lucide-react" import { cn } from "@lib/utils" import { SlackMark } from "@/components/brain-connector-icons" import { dmSans125ClassName, dmSansClassName } from "@/lib/fonts" export function SlackHandoff({ teamName, onDismiss, }: { teamName: string | null onDismiss: () => void }) { return (

{teamName ? `Company Brain is live in ${teamName}` : "Company Brain is live in your Slack"}

We sent you a DM to get started. Ask it anything about your company — it answers where your team already works.

Open Slack
) }