17 lines
620 B
TypeScript
17 lines
620 B
TypeScript
'use client';
|
|
|
|
import { SolutionGuard } from '@/components/auth/SolutionGuard';
|
|
|
|
export default function HelpdeskPage() {
|
|
return (
|
|
<SolutionGuard requiredSolution="helpdesk">
|
|
<div className="p-6">
|
|
<h1 className="text-2xl font-bold text-gray-900 dark:text-white mb-4">Helpdesk</h1>
|
|
<div className="bg-white dark:bg-gray-900 rounded-xl border border-gray-200 dark:border-gray-800 p-8 text-center">
|
|
<p className="text-gray-500">Central de Suporte e Chamados em breve</p>
|
|
</div>
|
|
</div>
|
|
</SolutionGuard>
|
|
);
|
|
}
|