'use client' import Link from 'next/link' import { MessageCircle } from 'lucide-react' import { Button } from '~/components/ui/button' import { usePathname } from 'next/navigation' export default function ChatFAB() { const pathName = usePathname() const isChat = pathName.indexOf('\/chat') > -1 return ( <> {!isChat &&