import { Card, CardContent, CardTitle } from "@/components/ui/card" import { ColoredText } from "@/components/ui/colored-text" import config from "@/lib/config" import { Mail } from "lucide-react" import Link from "next/link" import { redirect } from "next/navigation" export default async function ChoosePlanPage() { if (config.selfHosted.isEnabled) { redirect(config.selfHosted.redirectUrl) } return (
TaxHacker Cloud Edition

Cloud plans are not available yet

Cloud plans are not available yet. Please use the self-hosted version or reach out for questions.
Contact us for custom plans
) }