import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Check } from "lucide-react" import { EnterpriseContactUsButton } from "./enterpriseContactUsButton" import { CheckoutButton } from "./checkoutButton" import { SourcebotLogo } from "@/app/components/sourcebotLogo"; const teamFeatures = [ "Index hundreds of repos from multiple code hosts (GitHub, GitLab, Gerrit, Gitea, etc.). Self-hosted code sources supported", "Public and private repos supported", "Create sharable links to code snippets", "9x5 email support team@sourcebot.dev", ] const enterpriseFeatures = [ "All Team features", "Dedicated Slack support channel", "Single tenant deployment", "Advanced security features", ] export async function PaywallCard({ domain }: { domain: string }) { return (

Your subscription has expired.

Team For professional developers and small teams

$10

per user / month

    {teamFeatures.map((feature, index) => (
  • {feature}
  • ))}
Enterprise For large organizations with custom needs

Custom

tailored to your needs

    {enterpriseFeatures.map((feature, index) => (
  • {feature}
  • ))}
) }