File size: 1,045 Bytes
1e2a2f3
 
9e51bdc
 
 
 
 
c075953
9e51bdc
1e2a2f3
c075953
9e51bdc
c075953
 
 
 
 
 
 
 
 
 
 
 
 
 
9e51bdc
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;