import { CheckCircle2 } from 'lucide-react' import { Button } from 'ui' import { ProjectClaimLayout } from './layout' import { ApiAuthorizationResponse } from '@/data/api-authorization/api-authorization-query' import { OrganizationProjectClaimResponse } from '@/data/organizations/organization-project-claim-query' export const ProjectClaimBenefits = ({ projectClaim, requester, onContinue, }: { projectClaim: OrganizationProjectClaimResponse requester: ApiAuthorizationResponse onContinue: () => void }) => { return ( Claim a project {projectClaim?.project?.name} from{' '} {requester?.name} } >

Why manage your database project on Briven?

  • Excellent Technical Support Get expert help when you need it, with support ready to assist your development process.
  • Unrestricted usage. Grow your application without hitting arbitrary usage caps—built to scale with you.
  • Visibility into your data. You'll have full control over your data to help your users get the best experience.
  • Observability and easy debugging. You'll have full view when things go wrong.
  • Easy Compute Scaling. Upgrade compute resources to handle increased traffic and larger database operations smoothly.
) }