'use client' import { FeatureGate } from '@nextsparkjs/core/components/billing/FeatureGate' import { FeaturePlaceholder } from '@nextsparkjs/core/components/billing/FeaturePlaceholder' import { Webhook } from 'lucide-react' import { useTranslations } from 'next-intl' import { getTemplateOrDefaultClient } from '@nextsparkjs/registries/template-registry.client' function WebhooksPage() { const t = useTranslations('features') return (
} benefits={[ t('webhooks.benefit1'), t('webhooks.benefit2'), t('webhooks.benefit3'), ]} /> } > {/* Contenido real cuando se implemente */}

{t('webhooks.title')}

Webhooks configuration coming soon...

) } export default getTemplateOrDefaultClient('app/dashboard/features/webhooks/page.tsx', WebhooksPage)