-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverse.html
More file actions
112 lines (104 loc) · 5.79 KB
/
verse.html
File metadata and controls
112 lines (104 loc) · 5.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BoquilaVerse - Nature in 3D</title>
<meta
content="BoquilaVerse offers a growing open collection of 3D models made with photogrammetry and deep learning. Ideal for education, AI training, and connecting with nature through detailed visualizations."
name="description">
<meta
content="Artificial intelligence, AI, biodiversity, conservation, projects, Chile, innovation, technology, environment, sustainability, climate change, ecology, nature protection."
name="keywords">
<meta property="og:image" content="https://boquila.org/assets/blog/pudu-museum.jpg"/>
<meta property="twitter:image" content="https://boquila.org/assets/blog/pudu-museum.jpg"/>
<meta name="twitter:image:src" content="https://boquila.org/assets/blog/pudu-museum.jpg">
<link href="assets/favicon.png" rel="icon">
<link rel="stylesheet" href="styles.css">
<link rel="preload" href="assets/fonts/gabarito-latin.woff2" as="font" type="font/woff2" crossorigin>
</head>
<body>
<header>
<div class="container">
<a href="./" class="logo">
<img width="155" height="40" src="assets/logo2.webp" alt="Boquila logo">
</a>
<nav>
<ul>
<li><a href="hub">Hub</a></li>
<li><a href="verse">Verse</a></li>
<li><a href="donate">Donate</a></li>
<li>
<label for="lang-select" class="sr-only">Language</label>
<select id="lang-select" class="lang-select" onchange="if(this.value) location.href = this.value;">
<option value="verse" selected>EN</option>
<option value="zh/verse">ZH</option>
<option value="de/verse">DE</option>
<option value="fr/verse">FR</option>
<option value="vi/verse">VI</option>
<option value="pt/verse">PT</option>
<option value="es/verse">ES</option>
<option value="ja/verse">JA</option>
</select>
</li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero-box">
<h1>Boquila<span>Verse</span></h1>
<p>A growing collection of 3D models of flora, fauna and funga. Created through photogrammetry, deep learning and other techniques. </p>
<button class="btn-link" style="margin-top: 2rem; cursor: not-allowed; opacity: 0.7;">Coming Soon</button>
</div>
</div>
</section>
<section class="section" style="background-color: white;">
<div class="container">
<div style="display: flex; gap: 3rem; flex-wrap: wrap; align-items: flex-start;">
<div style="flex: 1; min-width: 300px;">
<h2 style="font-size: 2.5rem; text-transform: uppercase; margin-bottom: 2rem; color: var(--color-dark-gray);">Why BoquilaVerse?</h2>
<ul class="feature-list">
<li>
<svg><use href="assets/icons.svg#icon-tree"></use></svg>
<span>Always physically and biologically accurate</span>
</li>
<li>
<svg><use href="assets/icons.svg#icon-lightbulb"></use></svg>
<span>Better data to train AI for conservation</span>
</li>
<li>
<svg><use href="assets/icons.svg#icon-heart"></use></svg>
<span>Cool visualizations for humans</span>
</li>
</ul>
</div>
<div style="flex: 1; min-width: 300px; height: 420px; border: var(--border-thick) solid var(--color-dark-gray); box-shadow: 6px 6px 0px rgba(0,0,0,0.1);">
<iframe src="assets/pudu.html"
style="border:none; width:100%; height:100%;"></iframe>
</div>
</div>
</div>
</section>
<footer>
<div class="container footer-content">
<div class="footer-brand">
<a href="./" class="footer-logo">
<img width="178" height="50" src="assets/logo.webp" alt="Boquila logo">
</a>
<p>AI for nature</p>
</div>
<div class="footer-links">
<a href="mailto:contacto@boquila.org" title="Contact Us"><svg class="footer-icon-svg" fill="currentColor"><use href="assets/icons.svg#icon-email"></use></svg></a>
<a href="https://github.com/boquila" target="_blank" title="GitHub"><svg class="footer-icon-svg" fill="currentColor"><use href="assets/icons.svg#icon-github"></use></svg></a>
<a href="https://www.linkedin.com/company/boquila" target="_blank" title="LinkedIn"><svg class="footer-icon-svg" fill="currentColor"><use href="assets/icons.svg#icon-linkedin"></use></svg></a>
<a href="https://instagram.com/fundacionboquila" target="_blank" title="Instagram"><svg class="footer-icon-svg" fill="currentColor"><use href="assets/icons.svg#icon-instagram"></use></svg></a>
<a href="https://huggingface.co/boquila" target="_blank" title="HuggingFace">
<svg class="footer-icon-svg" fill="currentColor"><use href="assets/icons.svg#icon-huggingface"></use></svg>
</a>
</div>
</div>
</footer>
</body>
</html>