feat: Phase 1-3 全部完成 — 沙盒增强、学情分析、学习路径

This commit is contained in:
yuzhiran-dev
2026-05-18 09:48:51 +08:00
commit 11bb86854c
277 changed files with 37755 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
'use client';
export default function ErrorPage({ error, reset }: { error: Error; reset: () => void }) {
console.error(error);
return (
<div className="flex flex-col items-center justify-center min-h-[60vh] gap-4">
<h1 className="text-4xl font-bold text-foreground"></h1>
<p className="text-muted-foreground"></p>
<button
onClick={() => reset()}
className="text-brand-600 hover:text-brand-700 font-medium"
>
</button>
</div>
);
}