feat: Implement task template management with translation support and improved UI components

This commit is contained in:
2025-09-18 12:36:03 +02:00
parent abfd174f85
commit 142b6490cc
8 changed files with 183 additions and 88 deletions

View File

@@ -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>
);