Files
minimap/frontend/app/page.tsx
2026-03-20 19:40:17 +08:00

20 lines
818 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}