feat: Implement task template management with translation support and improved UI components
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import TaskTemplateForm from "@/components/TaskTemplateForm";
|
||||
import { useTranslation } from "@/lib/i18n";
|
||||
|
||||
export default function NewTaskTemplatePage() {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<div className="p-4 max-w-xl mx-auto">
|
||||
<h1 className="text-xl font-bold mb-4">New Task Template</h1>
|
||||
<h1 className="text-xl font-bold mb-4">{t('taskTemplates.newTemplate')}</h1>
|
||||
<TaskTemplateForm />
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user