2025-02-20 03:27:07 +00:00
|
|
|
import CodeEditor from "@/components/code-editor";
|
2025-02-20 16:10:31 +00:00
|
|
|
import { DEFAULT_PROBLEM } from "@/config/problem";
|
|
|
|
import MdxPreview from "@/components/problem-description";
|
2025-02-19 04:29:24 +00:00
|
|
|
|
2025-02-21 11:49:56 +00:00
|
|
|
export default function HomePage() {
|
2025-02-20 16:10:31 +00:00
|
|
|
return (
|
|
|
|
<div className="h-full flex items-center">
|
|
|
|
<div className="h-full w-1/2">
|
|
|
|
<MdxPreview source={DEFAULT_PROBLEM} />
|
|
|
|
</div>
|
|
|
|
<div className="h-full w-1/2">
|
|
|
|
<CodeEditor />
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-02-21 11:49:56 +00:00
|
|
|
);
|
2025-02-19 01:00:15 +00:00
|
|
|
}
|