-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 1.88 KB
/
index.html
File metadata and controls
49 lines (47 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>d-verse – Local-First, Peer-to-Peer Framework</title>
<!-- Preconnect for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
colors: {
'dverse-purple': '#6d28d9',
'dverse-pink': '#d946ef',
},
},
},
}
</script>
<style>
.gradient-text {
background: linear-gradient(to right, #6d28d9, #d946ef);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="font-inter text-gray-800 bg-white min-h-screen flex items-center justify-center px-6">
<main class="max-w-3xl text-center">
<h1 class="text-4xl font-semibold mb-6 gradient-text font-mono">d-verse</h1>
<p class="text-lg text-gray-700 leading-relaxed">
<strong>d-verse</strong> is an early-stage framework for building local-first, peer-to-peer applications that don’t rely on cloud platforms, central servers, or blockchain infrastructure.
<br /><br />
It’s an exploration into how software can run directly on user devices, sync across trusted peers, and uphold integrity through transparent, decentralized logic — without external control points.
<br /><br />
<em>This is a work in progress. We’re sharing it early to learn in the open and invite conversations.</em>
</p>
</main>
</body>
</html>