import { notFound } from "next/navigation" import { getCoursePlanById } from "@/modules/course-plans/data-access" import { CoursePlanDetail } from "@/modules/course-plans/components/course-plan-detail" export const dynamic = "force-dynamic" export default async function TeacherCoursePlanDetailPage({ params, }: { params: Promise<{ id: string }> }) { const { id } = await params const plan = await getCoursePlanById(id) if (!plan) notFound() return (