import { Button, IconHelpCircle, IconMail, IconMessageCircle, Popover, IconBookOpen, IconActivity, } from '@supabase/ui' import { useRouter } from 'next/router' import { FC } from 'react' import Link from 'next/link' import Image from 'next/image' import SVG from 'react-inlinesvg' interface Props {} const HelpPopover: FC = () => { const router = useRouter() const projectRef = router.query.ref const supportUrl = `/support/new${projectRef ? `?ref=${projectRef}` : ''}` return (
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 tier. Pro and Pay as You Go plans are prioritised.

Reach out to the community

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

} >
) } export default HelpPopover