-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 1.6 KB
/
index.html
File metadata and controls
62 lines (61 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>BioRAILab | NTU Singapore</title>
<style>
body {
font-family: "Segoe UI", sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
color: #333;
line-height: 1.6;
}
header {
background: #00539C;
color: #fff;
padding: 2rem;
text-align: center;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
footer {
text-align: center;
padding: 1rem;
background: #eee;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>BioRAILab</h1>
<p>Bio-inspired AI and Robotics Research Group @ NTU Singapore</p>
</header>
<main>
<h2>Welcome to Our Lab!</h2>
<p>
We are the BioRAILab, a research group at Nanyang Technological University (NTU), Singapore.
Our work explores bio-inspired sensing, neuromorphic AI, spatial intelligence, and embodied robotics.
</p>
<p>
This site will serve as our official hub for projects, publications, and open-source software.
</p>
<h3>Recent Projects</h3>
<ul>
<li><strong>Nature's Insight:</strong> A Novel Framework and Comprehensive Analysis of Agentic Reasoning Through the Lens of Neuroscience</li>
<li><strong>Neural Brain:</strong> A Neuroscience-inspired Framework for Embodied Agents</li>
</ul>
<p>More coming soon!</p>
</main>
<footer>
© 2025 BioRAILab | NTU Singapore
</footer>
</body>
</html>