import type { JSX } from "react" import { Suspense } 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 { Skeleton } from "@/shared/components/ui/skeleton" 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")}

{Array.from({ length: 4 }).map((_, i) => ( ))}
} > ) }