import { Suspense } from "react"; import { Loading } from "@/components/loading"; interface ProblemSolutionLayoutProps { children: React.ReactNode; } export default function ProblemSolutionLayout({ children, }: ProblemSolutionLayoutProps) { return (