import { pushModal } from '@/modals'; import { ServerIcon } from 'lucide-react'; import Syntax from '@/components/syntax'; import { useAppContext } from '@/hooks/use-app-context'; import type { IServiceClient } from '@openpanel/db'; import { frameworks } from '@openpanel/sdk-info'; type Props = { client: IServiceClient | null; }; const ConnectBackend = ({ client }: Props) => { const context = useAppContext(); return ( <>
Backend
Try with a basic curl command

Pick a framework below to get started.

{frameworks .filter((framework) => framework.type.includes('backend')) .map((framework) => ( ))}

Missing a framework?{' '} Let us know!

); }; export default ConnectBackend;