import { Link } from "@tanstack/react-router"; import { AlertTriangle } from "lucide-react"; import { SUBSCRIBE_ROUTE } from "@/shared/billing"; export function FreePlanAlert({ visible }: { visible: boolean }) { if (!visible) return null; return (