import * as Tooltip from '@radix-ui/react-tooltip' import Image from 'next/legacy/image' import Link from 'next/link' import { useRouter } from 'next/router' import SVG from 'react-inlinesvg' import { Button, IconActivity, IconBookOpen, IconHelpCircle, IconMail, IconMessageCircle, IconTool, Popover, PopoverContent_Shadcn_, PopoverTrigger_Shadcn_, Popover_Shadcn_, } from 'ui' const HelpPopover = () => { const router = useRouter() const projectRef = router.query.ref const supportUrl = `/support/new${projectRef ? `?ref=${projectRef}` : ''}` return (

Help

Need help with your project?

For issues with your project hosted on supabase.com, or other inquiries about our hosted services.

Expected response time is based on your billing plan. Projects on paid plans are prioritized.

Reach out to the community

For other support, including questions on our client libraries, advice, or best practices.

) } export default HelpPopover