"use client"; import { notFound } from "next/navigation"; import { useProblem } from "@/hooks/use-problem"; import MdxPreview from "@/components/mdx-preview"; import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; import ProblemSolutionFooter from "@/components/features/playground/problem/solution/footer"; export default function Solutions() { const { problem } = useProblem(); if (!problem) { notFound(); } return (