import { Suspense } from 'react'; import { Card, CardContent, CardDescription, CardHeader, CardTitle, CardFooter } from "@/components/ui/card"; import { Loader2, CreditCard, ArrowRight, ShieldCheck, Zap } from "lucide-react"; export default async function BillingPage(props: { params: Promise<{ projectId: string }> }) { const { projectId } = await props.params; return (

Payments & Billing

Connect your bank account to start charging customers for this project.

{/* Onboarding Card */}
Accept Payments with Stripe Setup takes 3 minutes. Vibn handles the code.

What you get immediately:

  • AI Auto-Wiring: The Vibn AI will automatically inject your secure Stripe keys into your live Coolify application.
  • Instant Compliance: Securely accept Apple Pay, Google Pay, and credit cards with PCI compliance handled automatically.

By connecting, you agree to Stripe's Services Agreement. Vibn takes a small 1% platform fee on successful transactions to keep the AI platform running.

); }