import { pushModal } from '@/modals'; import { MonitorIcon } from 'lucide-react'; import type { IServiceClient } from '@openpanel/db'; import { frameworks } from '@openpanel/sdk-info'; type Props = { client: IServiceClient | null; }; const ConnectWeb = ({ client }: Props) => { return (
Website

Pick a framework below to get started.

{frameworks.website.map((framework) => ( ))}

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

); }; export default ConnectWeb;