import { ReactMarkdown } from 'react-markdown/lib/react-markdown' export type FooterHelpCalloutType = 'default' | 'postgres' const content = { default: { title: 'Need some help?', description: `Not to worry, our specialist engineers are here to help. Submit a support ticket through the [Dashboard](https://supabase.com/dashboard/support/new).`, }, postgres: { title: 'Looking for Serverless Postgres?', description: `Supabase is the fastest way to get started with Postgres in a serverless environment. [Learn more](https://supabase.com/database?utm=postgres-helpers).`, }, } const FooterHelpCallout = ({ footerHelpType = 'default', title, }: { footerHelpType: FooterHelpCalloutType title: any }) => { return (