forked from eyepop-ai/Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo Menu</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f4f4f4;
font-family: 'Arial', sans-serif;
}
.demo-title {
font-size: 2em;
text-align: center;
margin-top: 2%;
margin-bottom: 4%;
color: #2c3e50;
}
.demo-card {
background-color: #ffffff;
padding: 2%;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.demo-link {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: #ffffff;
border-radius: 5px;
font-size: 1.2em;
text-decoration: none;
}
.demo-link:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="container" style="max-width: 1200px;">
<div class="demo-title">
📷 EyePop.ai Workshop Demos 📷
</div>
<div class="demo-card">
<a class="demo-link" href="AI CDN - Computer Vision Endpoint & UGC Ruleset/1_upload_image.html">Workshop #1
- AI CDN DEMO</a>
</div>
<div class="demo-card">
<a class="demo-link" href="https://app.eyepop.ai/sign-up">Sign up</a>
</div>
</div>
</body>
</html>