Alleinzellgaenger's picture
Before I make bigger changes, let's commit so we have the PDF viewer ready :)
c075953
raw
history blame
1.05 kB
import { Link } from 'react-router-dom';
function Homepage() {
return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
<div className="text-center">
<h1 className="text-4xl font-bold text-gray-900 mb-4">
SokratesAI
</h1>
<p className="text-lg text-gray-600 mb-8">
Transform your PDFs into interactive learning experiences with AI-powered document processing
</p>
<div className="space-x-4">
<Link
to="/process"
className="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition-colors duration-200 inline-block"
>
Process Document
</Link>
<Link
to="/upload"
className="bg-gray-500 hover:bg-gray-600 text-white font-bold py-3 px-6 rounded-lg transition-colors duration-200 inline-block"
>
Legacy Upload
</Link>
</div>
</div>
</div>
);
}
export default Homepage;