import type { JSX } from "react" import Link from "next/link" import { ArrowLeft } from "lucide-react" import { getTranslations } from "next-intl/server" import { Button } from "@/shared/components/ui/button" import { TemplatePicker } from "@/modules/lesson-preparation/components/template-picker" export const dynamic = "force-dynamic" export default async function NewLessonPlanPage(): Promise { const t = await getTranslations("lessonPreparation") return (

{t("title.new")}

) }