Arghya Ghosh commited on
Commit
eaf3060
·
verified ·
1 Parent(s): 96c5da0

Upload index.html

Browse files
Files changed (1) hide show
  1. static/index.html +86 -0
static/index.html ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>IntelliCure API</title>
8
+ <meta name="description"
9
+ content="A powerful API for medical image analysis and disease prediction, built with cutting-edge AI models." />
10
+ <meta name="keywords"
11
+ content="IntelliCure, API, medical image analysis, disease prediction, AI models
12
+ brain tumor detection, pneumonia diagnosis, Alzheimer's analysis, disease prediction" />
13
+ <meta name="author" content="FrostByte" />
14
+ <meta name="theme-color" content="#10B981" />
15
+ <link rel="icon" href="https://emjcn.arghya.dev/e/⚕️" type="image/svg+xml" />
16
+
17
+ <!-- Tailwind CSS -->
18
+ <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
19
+
20
+
21
+ <!-- Geist & Geist Mono Fonts -->
22
+ <link rel="preconnect" href="https://fonts.googleapis.com">
23
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
24
+ <link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap"
25
+ rel="stylesheet">
26
+
27
+ <style>
28
+ body {
29
+ background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
30
+ font-family: 'Geist', sans-serif;
31
+ }
32
+
33
+ .glass {
34
+ backdrop-filter: blur(10px);
35
+ background: rgba(255, 255, 255, 0.55);
36
+ border: 1px solid rgba(0, 0, 0, 0.05);
37
+ }
38
+
39
+ code {
40
+ font-family: 'Geist Mono', monospace;
41
+ }
42
+ </style>
43
+ </head>
44
+
45
+ <body class="min-h-screen flex flex-col justify-center items-center text-gray-800 relative">
46
+ <main class="w-full max-w-2xl px-6 text-center">
47
+ <h1 class="text-4xl sm:text-5xl font-black mb-4">
48
+ ⚕️IntelliCure API
49
+ </h1>
50
+ <p class="text-lg sm:text-xl mx-auto max-w-xl text-gray-700 mb-8 leading-relaxed">
51
+ A powerful API for medical image analysis and disease prediction, built with cutting-edge AI models.
52
+ </p>
53
+
54
+ <div class="glass rounded-xl shadow-lg p-6 space-y-4 text-left">
55
+ <div class="text-sm sm:text-base space-y-2">
56
+ <p>
57
+ <code class="text-emerald-700 font-semibold">🧠 /tumor/classify</code>
58
+ – Detect brain tumors from MRI scans
59
+ </p>
60
+ <p>
61
+ <code class="text-emerald-700 font-semibold">🫁 /pneumonia/predict</code>
62
+ – Diagnose pneumonia from chest X-rays
63
+ </p>
64
+ <p>
65
+ <code class="text-emerald-700 font-semibold">🧓 /alzheimers/analyze</code>
66
+ – Analyze Alzheimer’s stage from brain scans
67
+ </p>
68
+ <p>
69
+ <code class="text-emerald-700 font-semibold">💊 /disease/predict</code>
70
+ – Predict disease based on symptoms
71
+ </p>
72
+ </div>
73
+ </div>
74
+
75
+ <a href="/docs"
76
+ class="mt-10 inline-block bg-emerald-600 hover:bg-emerald-700 text-white font-semibold py-3 px-6 rounded-lg shadow-md transition duration-200">
77
+ View API Docs →
78
+ </a>
79
+ </main>
80
+
81
+ <footer class="mt-12 mb-4 text-xs text-gray-500 text-center">
82
+ Built with ❤️ by ❄️FrostByte
83
+ </footer>
84
+ </body>
85
+
86
+ </html>