/* Copyright (C) 2023-2026 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ import { Info } from 'lucide-react' import { useTranslation } from 'react-i18next' import { Alert, AlertDescription } from '@/components/ui/alert' import { SectionPageLayout } from '@/components/layout' import { SubscriptionsDialogs } from './components/subscriptions-dialogs' import { SubscriptionsPrimaryButtons } from './components/subscriptions-primary-buttons' import { SubscriptionsProvider, useSubscriptions, } from './components/subscriptions-provider' import { SubscriptionsTable } from './components/subscriptions-table' function SubscriptionsContent() { const { t } = useTranslation() const { complianceConfirmed } = useSubscriptions() return ( <> {t('Subscription Management')}
{t( 'Stripe/Creem requires creating products on the third-party platform and entering the ID' )}
{!complianceConfirmed ? ( {t( 'Subscription plan creation and changes are locked until the administrator confirms compliance terms in Payment Gateway settings.' )} ) : null}
) } export function Subscriptions() { return ( ) }