import { ProjectClaimLayout } from './layout' import { OrganizationSelector } from '@/components/ui/org-selector' export interface ProjectClaimChooseOrgProps { onChoose: (orgSlug: string) => void } const MAX_ORGS_TO_SHOW = 5 export function ProjectClaimChooseOrg({ onChoose }: ProjectClaimChooseOrgProps) { return (

This is the first step in claiming your Briven project. Once you're finished, the project will be transferred to Briven organization.

Please select an organization to continue.

) }