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

{t('automation.title')}

Task automation coming soon...

) } export default getTemplateOrDefaultClient('app/dashboard/features/automation/page.tsx', TaskAutomationPage)