-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 3.54 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Smart Operating Block</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container-fluid p-0">
<div
class="jumbotron bg-light text-dark jumbotron-fluid text-center p-3 m-0"
id="div-title"
>
<h1>Smart Operating Block</h1>
</div>
<div class="card mx-auto my-3" style="width: 40%">
<div class="card-body">
<p>
The main objective of the project is the prototyping of a smart version of an operating block.
</p>
<p>
An operating block is the set of all the rooms dedicated to surgical interventions within a hospital.
</p>
<p>
The main services that the operating block provides are:
<ul>
<li>
<strong>Building management & Automation</strong>
</li>
<li>
<strong>Monitoring & Process Automation</strong>
</li>
<li>
<strong>Surgery report</strong>
</li>
<li>
<strong>Staff Tracking</strong>
</li>
</ul>
</p>
<br />
<p>
In the following image you can find the global architecture of the <i>Smart Operating Block</i> project.
<div class="text-center">
<a href="https://raw.githubusercontent.com/SmartOperatingBlock/documentation/main/imgs/architectureSchema.jpg">
<img src="https://raw.githubusercontent.com/SmartOperatingBlock/documentation/main/imgs/architectureSchema.jpg" width="70%" />
</a>
</div>
</p>
<br />
<p>
To check out the process documentation you can visit the dedicated <a href="https://smartoperatingblock.github.io/documentation/">website</a>.
</p>
</div>
</div>
</div>
</body>
</html>