"use client"; import { SettingsContainer, SettingsSection, SettingsSectionTitle as SectionTitle, SettingsSectionBody, SettingsSectionFooter } from "@app/components/Settings"; import SettingsSectionTitle from "@app/components/SettingsSectionTitle"; import { Alert } from "@app/components/ui/alert"; import { Button } from "@app/components/ui/button"; import { Shield, Zap, RefreshCw, Activity, Wrench, CheckCircle, ExternalLink } from "lucide-react"; import Link from "next/link"; import { useTranslations } from "next-intl"; export default function ManagedPage() { const t = useTranslations(); return ( <>

{t("managedSelfHosted.introTitle")}{" "} {t("managedSelfHosted.introDescription")}

{t("managedSelfHosted.introDetail")}

{t( "managedSelfHosted.benefitSimplerOperations.title" )}

{t( "managedSelfHosted.benefitSimplerOperations.description" )}

{t( "managedSelfHosted.benefitAutomaticUpdates.title" )}

{t( "managedSelfHosted.benefitAutomaticUpdates.description" )}

{t( "managedSelfHosted.benefitLessMaintenance.title" )}

{t( "managedSelfHosted.benefitLessMaintenance.description" )}

{t( "managedSelfHosted.benefitCloudFailover.title" )}

{t( "managedSelfHosted.benefitCloudFailover.description" )}

{t( "managedSelfHosted.benefitHighAvailability.title" )}

{t( "managedSelfHosted.benefitHighAvailability.description" )}

{t( "managedSelfHosted.benefitFutureEnhancements.title" )}

{t( "managedSelfHosted.benefitFutureEnhancements.description" )}

{t("managedSelfHosted.docsAlert.text")}{" "} {t("managedSelfHosted.docsAlert.documentation")} .
); }