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
+47
View File
@@ -0,0 +1,47 @@
import Link from 'next/link';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: '关于宇之然',
description: '关于宇之然 AI 学习与实践平台',
};
export default function AboutPage() {
return (
<div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<h1 className="text-3xl font-bold text-foreground mb-8"></h1>
<section className="mb-10">
<h2 className="text-xl font-semibold text-foreground mb-3">使</h2>
<p className="text-muted-foreground leading-relaxed">
AI AI AI
</p>
</section>
<section className="mb-10">
<h2 className="text-xl font-semibold text-foreground mb-3"></h2>
<p className="text-muted-foreground leading-relaxed">
AI AI
</p>
</section>
<section className="mb-10">
<h2 className="text-xl font-semibold text-foreground mb-3"></h2>
<ul className="space-y-2">
<li><Link href="/privacy" className="text-brand-600 hover:text-brand-700 underline"></Link></li>
<li><Link href="/terms" className="text-brand-600 hover:text-brand-700 underline"></Link></li>
<li><Link href="/ai-agreement" className="text-brand-600 hover:text-brand-700 underline">AI </Link></li>
</ul>
</section>
<section>
<h2 className="text-xl font-semibold text-foreground mb-3"></h2>
<p className="text-muted-foreground leading-relaxed">
contact@yuzhiran.com<br />
<br />
</p>
</section>
</div>
);
}