-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BasisVR</title>
<script src="https://cdn.tailwindcss.com/3.4.16"></script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 min-h-screen">
<div class="container mx-auto px-4 py-8">
<header class="text-left mb-12">
<h1 class="text-center text-4xl font-bold text-gray-800 dark:text-gray-100 mb-6">BasisVR</h1>
<div class="max-w-2xl mx-auto">
<p class="text-gray-600 dark:text-gray-300 leading-relaxed mb-8">
<strong>Basis lets you set up your own Social VR and Networked VR games with ease.</strong><br>
We are a MIT-Licensed Open-Source project with a focus on
open development and full access to any optional
modification desired or required. Our goal is to help
equip VR Creators, so we can accelerate the growth of
VR.
</p>
</div>
</header>
<section class="max-w-lg mx-auto">
<h2 class="text-2xl font-semibold text-gray-700 dark:text-gray-200 mb-4">Project Links</h2>
<div class="space-y-4">
<a href="https://github.com/BasisVR/basis" class="block bg-white dark:bg-gray-800 p-4 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200">
<span class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300">💻 Github Repository</span>
</a>
<a href="https://bsky.app/profile/basisvr.org" class="block bg-white dark:bg-gray-800 p-4 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200">
<span class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300">🦋 Bluesky</span>
</a>
<a href="https://x.com/BasisVR" class="block bg-white dark:bg-gray-800 p-4 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200">
<span class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300">𝕏 Twitter</span>
</a>
<a href="https://discord.gg/v6ve6WT562" class="block bg-white dark:bg-gray-800 p-4 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200">
<span class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300">Basis Discord</span>
</a>
</div>
</section>
</div>
</body>
</html>