-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 3.53 KB
/
Copy pathindex.html
File metadata and controls
62 lines (54 loc) · 3.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
<!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://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<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> Docs
</a>
<div class="btn-group">
<button type="button" class="btn btn-lg btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-cogs"></i> API
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://maps-lab.github.io/AISdb/">AISdb API</a>
<a class="dropdown-item" href="https://maps-lab.github.io/AISdb-lite/">AISdb-lite API</a>
</div>
</div>
<a href="https://github.com/MAPS-Lab" 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-bs-toggle="dropdown" 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>
</div>
</div>
</div>
<footer class="footer mt-auto py-3">
<div class="container text-center">
<span class="text-muted">Copyright © 2023-2026,
<a href="https://mapslab.tech/" class="footer-link">Modeling and Analytics for Predictive Systems (MAPS)</a>
</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>