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
+56
View File
@@ -0,0 +1,56 @@
import Link from 'next/link';
export function Footer() {
return (
<footer className="border-t border-border bg-muted/30">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 md:py-16">
<div className="grid grid-cols-2 md:grid-cols-4 gap-8">
<div className="col-span-2 md:col-span-1">
<h3 className="text-lg font-bold bg-gradient-to-r from-brand-600 to-brand-400 bg-clip-text text-transparent mb-4"> AI</h3>
<p className="text-sm text-muted-foreground"> AI</p>
</div>
<div>
<h4 className="text-sm font-semibold mb-3"></h4>
<ul className="space-y-2.5">
<li><Link href="/courses" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/sandbox" className="text-sm text-muted-foreground hover:text-foreground transition-colors">AI </Link></li>
<li><Link href="/prompts" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/models" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/tools" className="text-sm text-muted-foreground hover:text-foreground transition-colors">AI </Link></li>
</ul>
</div>
<div>
<h4 className="text-sm font-semibold mb-3"></h4>
<ul className="space-y-2.5">
<li><Link href="/about" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/privacy" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/terms" className="text-sm text-muted-foreground hover:text-foreground transition-colors"></Link></li>
<li><Link href="/ai-agreement" className="text-sm text-muted-foreground hover:text-foreground transition-colors">AI </Link></li>
</ul>
</div>
<div>
<h4 className="text-sm font-semibold mb-3"></h4>
<ul className="space-y-2.5">
<li className="text-sm text-muted-foreground">contact@yuzhiran.com</li>
<li className="text-sm text-muted-foreground"></li>
</ul>
</div>
</div>
<div className="mt-10 pt-8 border-t border-border">
<div className="flex flex-col md:flex-row items-center justify-between gap-2 text-xs text-muted-foreground">
<p>&copy; {new Date().getFullYear()} </p>
<p>
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" className="hover:text-foreground transition-colors">
ICP ICP备XXXXXXXX号
</a>
<span className="mx-2">|</span>
<a href="https://www.beian.gov.cn/" target="_blank" rel="noopener noreferrer" className="hover:text-foreground transition-colors">
XXXXXXXXXXXX号
</a>
</p>
</div>
</div>
</div>
</footer>
);
}