-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 3.7 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AISViz Project</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="vh-100 d-flex align-items-center justify-content-center">
<div class="text-center">
<h1 class="fw-bold text-primary display-4 text-dark">Welcome to <a style="font-weight: 1000;">AISViz</a> <i class="fa-solid fa-tower-cell"></i></h1>
<p class="lead text-dark" style="font-weight: 600;">Discover <i class="fa-solid fa-magnifying-glass"></i>, Contribute <i class="fa-solid fa-laptop-code"></i>, and Connect <i class="fa-solid fa-circle-nodes"></i> through</p>
<p class="lead text-dark" style="font-weight: 600;">Open-Source Marine Data Analysis <i class="fa-solid fa-ship"></i> using AISdb <i class="fa-solid fa-database"></i> in Python <i class="fa-brands fa-python"></i>.</p>
<div class="btn-group" role="group">
<a href="https://aisviz.gitbook.io/documentation/" class="btn btn-lg btn-outline-secondary" style="font-weight: 500;">
<i class="fas fa-book"></i> Tutorials
</a>
<a href="https://aisviz.cs.dal.ca/AISdb/" class="btn btn-lg btn-outline-secondary" style="font-weight: 500;">
<i class="fas fa-cogs"></i> API
</a>
<a href="https://github.com/AISViz" class="btn btn-lg btn-outline-secondary" style="font-weight: 500;">
<i class="fab fa-github"></i> GitHub
</a>
<div class="btn-group">
<button type="button" class="btn btn-lg btn-outline-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-robot"></i> Chatbot
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://huggingface.co/spaces/mapslab/AISVIZ-BOT">Gemini Chatbot (open-source)</a>
<a class="dropdown-item" href="https://chat.openai.com/g/g-hTTH0rUBv-aisdb-assistant">OpenAI Chatbot (subscription-based)</a>
</div>
</div>
<!--
<a href="mailto:aisviz@dal.ca"
class="btn btn-lg btn-outline-secondary" style="font-weight: 500;">
<i class="fas fa-envelope"></i> Contact Us
</a>
-->
</div>
</div>
</div>
<footer class="footer mt-auto py-3">
<div class="container text-center">
<span class="text-muted">Copyright © 2024-2029,
<a href="https://mapslab.cs.dal.ca/" class="footer-link">Modeling and Analytics on Predictive Systems (MAPS)</a>
</span>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.3/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>