This commit is contained in:
zhangyonghao
2026-03-20 23:09:51 +08:00
commit 8400fb6127
41 changed files with 9348 additions and 0 deletions

20
frontend/app/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
export default function HomePage() {
return (
<main className="mx-auto flex min-h-screen max-w-6xl flex-col justify-center px-6 py-16">
<div className="text-center">
<p className="text-sm font-semibold uppercase tracking-[0.28em] text-blue-700">
Interactive Mindmap
</p>
<h1 className="mt-4 text-4xl font-extrabold leading-tight text-slate-950 md:text-6xl">
</h1>
<p className="mt-6 mx-auto max-w-2xl text-lg leading-8 text-slate-600">
AI
</p>
<p className="mt-4 text-sm text-slate-500">
</p>
</div>
</main>
);
}