"use client" import { motion } from "framer-motion" import { CreditCard, LogIn } from "lucide-react" // Only integrations that genuinely exist in the product are listed here. // - Stripe: real payment processing (checkout + rent collection). // - Google: real sign-in via OAuth (Better Auth Google provider). // We deliberately do NOT advertise connectors we haven't built. const TOOLS = [ { name: "Stripe", icon: CreditCard, color: "text-violet-400", bg: "bg-violet-500/10 border-violet-500/20", desc: "Payments & rent collection" }, { name: "Google", icon: LogIn, color: "text-blue-400", bg: "bg-blue-500/10 border-blue-500/20", desc: "Sign in with Google (OAuth)" }, ] function ToolBadge({ name, icon: Icon, color, bg, desc }: typeof TOOLS[0]) { return ( {name} {desc} ) } export function Integrations() { return ( Integrations Works with the tools you already use Take rent payments with Stripe and let landlords sign in with Google — no extra setup, no fragile connectors. {TOOLS.map((t) => )} ) }
{name}
{desc}
Integrations
Take rent payments with Stripe and let landlords sign in with Google — no extra setup, no fragile connectors.