Margerie commited on
Commit
515ec97
1 Parent(s): 7dd05ae

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +68 -17
index.html CHANGED
@@ -1,19 +1,70 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
  <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6
+ <title>PARROT - Platform for AI-guided Radiation Oncology Treatment</title>
7
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
8
+ <style>
9
+ body {
10
+ padding-top: 56px;
11
+ }
12
+
13
+ .parrot-logo {
14
+ max-width: 600px;
15
+ float: right;
16
+ margin: 20px;
17
+ }
18
+ </style>
19
+ </head>
20
+ <body>
21
+
22
+ <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
23
+ <a class="navbar-brand" href="#">PARROT</a>
24
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
25
+ aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
26
+ <span class="navbar-toggler-icon"></span>
27
+ </button>
28
+ <div class="collapse navbar-collapse" id="navbarNav">
29
+ <ul class="navbar-nav">
30
+ <li class="nav-item active">
31
+ <a class="nav-link" href="#">Home</a>
32
+ </li>
33
+ <li class="nav-item">
34
+ <a class="nav-link" href="documentation.html">Documentation</a>
35
+ </li>
36
+ <li class="nav-item">
37
+ <a class="nav-link" href="contact.html">Contact</a>
38
+ </li>
39
+ </ul>
40
+ </div>
41
+ </nav>
42
+
43
+ <div class="container mt-5">
44
+ <div class="row">
45
+ <div class="col-lg-8">
46
+ <h1>Welcome to PARROT</h1>
47
+ <p>
48
+ PARROT, which stands for Platform for ARtificial intelligence guided Radiation Oncology Treatment,
49
+ is a user-friendly, free, and open-source web platform. It allows users to visualize DICOM files, run AI models,
50
+ display and evaluate predictions easily. The platform includes several trained state-of-the-art dose prediction
51
+ and contour segmentation models. Users can also add their own models using the embedded code editor.
52
+ </p>
53
+ <p>
54
+ The app consists of a frontend built in React JavaScript, including the graphical interface with a DICOM viewer,
55
+ a selection panel of AI models, an editor of contours predictions, and evaluation tools. The backend is built with Flask
56
+ to handle the predictions of AI models.
57
+ </p>
58
+ </div>
59
+ <div class="col-lg-4">
60
+ <img src="parrot-logo.jpg" alt="PARROT Logo" class="parrot-logo">
61
+ </div>
62
+ </div>
63
+ </div>
64
+
65
+ <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
66
+ <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
67
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
68
+
69
+ </body>
70
  </html>