-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
120 lines (113 loc) · 5.53 KB
/
Copy pathteam.html
File metadata and controls
120 lines (113 loc) · 5.53 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Team - Sensor Data Portal</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
.team-section {
margin-top: 50px;
}
.member-row {
margin-bottom: 40px;
align-items: center;
}
.member-img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
}
.member-info h5 {
margin-top: 10px;
margin-bottom: 5px;
}
.member-info p.role {
font-weight: bold;
color: #0d6efd;
margin-bottom: 10px;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Sensor Dashboard</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="home.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link active" href="team.html">Team</a></li>
<li class="nav-item"><a class="nav-link" href="view_1.php">Data</a></li>
<li class="nav-item"><a class="nav-link" href="exploration.html">Explorer</a></li>
</ul>
</div>
</div>
</nav>
<!-- Team Section -->
<div class="container team-section">
<h2 class="text-center mb-5">Meet Our Team</h2>
<!-- Team Member 1 -->
<div class="row member-row">
<div class="col-md-3 text-center">
<img src="images/mugume.jpeg" class="member-img" alt="John Doe">
<h5>Prof. Edwin Mugume</h5>
<p class="role">Project PI</p>
</div>
<div class="col-md-9">
<p>
Edwin Mugume received the BSc degree in electrical engineering from Makerere University (First Class Honors), Uganda in 2007 and the MSc degree in communication engineering (with Distinction) from The University of Manchester, UK in 2011. He completed his Ph.D. in electrical and electronic engineering from The University of Manchester, UK in 2016. His Ph.D. focused on energy efficient deployment strategies for future highly dense heterogeneous cellular networks. His research interests lie in developing deployment strategies for green heterogeneous cellular networks, 5G network technologies, energy harvesting strategies, and stochastic geometry approaches to wireless network analysis. He also has industry experience including radio frequency planning and optimization of mobile cellular networks.
</p>
</div>
</div>
<!-- Team Member 2 -->
<div class="row member-row">
<div class="col-md-3 text-center">
<img src="images/bakunzibake.jpeg" class="member-img" alt="Jane Smith">
<h5>Dr. Pierre Bakunzibake</h5>
<p class="role">Project PI</p>
</div>
<div class="col-md-9">
<p>Pierre Bakunzibake is an Digital Government and Innovation expert passionate about digital and innovative transformation and problem-solving in both the public and private sectors. He is a senior Lecturer at the University of Rwanda; teaching and researching in ICTs, e-Government, IoT, and Information Systems areas. Pierre is a PhD holder in Informatics from the Örebro University School of Business (Sweden). He has a working experience of about 18 years in academics. Between 2009 and 2013, he worked at the Faculty of Applied Sciences at the former National University of Rwanda.
</p>
</div>
</div>
<!-- Team Member 3 -->
<div class="row member-row">
<div class="col-md-3 text-center">
<img src="images/djabeng.enc" class="member-img" alt="Ali Hassan">
<h5>Ali Hassan</h5>
<p class="role">Research Assistant</p>
</div>
<div class="col-md-9">
<p>
After Richard Djarbeng earned his undergraduate degree in computer engineering from the University of Ghana, he sought an opportunity to apply the skills he learned and continue the type of work he was doing throughout undergrad. He was accepted to Carnegie Mellon University Africa, which allowed him to take classes that combined his interests of software engineering, robotics, and machine learning as a part of the master’s program in electrical and computer engineering. Richard recently graduated from CMU-Africa as part of the Class of 2024.
</p> </div>
</div>
<!-- Team Member 4 -->
<div class="row member-row">
<div class="col-md-3 text-center">
<img src="images/Stephen.jpeg" class="member-img" alt="Grace Achieng">
<h5>Stephen Augustine</h5>
<p class="role">Data Engineer</p>
</div>
<div class="col-md-9">
<p>Stephen handles the preparation and cleaning of simulated sensor datasets. She ensures data consistency and availability for both testing and analysis phases.</p>
</div>
</div>
<!-- Team Member 5 -->
<div class="row member-row">
<div class="col-md-3 text-center">
<img src="images/ujuru w.jpeg" class="member-img" alt="Eric Nkurunziza">
<h5>Wilson Ejulu</h5>
<p class="role">Deployment Engineer</p>
</div>
<div class="col-md-9">
<p>Wilson Ejulu is in charge of hosting and system administration. He deployed the application on a public IP, enabling access and testing in remote or low-resource settings.</p>
</div>
</div>
</div>
</body>
</html>