-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
124 lines (112 loc) · 3.28 KB
/
Copy pathcontact.html
File metadata and controls
124 lines (112 loc) · 3.28 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
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Contact · LIVRE OS</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- Shared nav -->
<header class="nav">
<div class="nav-inner">
<a href="index.html" class="nav-logo">
LIVRE<span>OS</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation">
<span></span><span></span><span></span>
</button>
<nav class="nav-links">
<a href="architecture.html">Architecture</a>
<a href="solivre.html">Solivre</a>
<a href="livreid.html">LivreID</a>
<a href="vault.html">Vault</a>
<a href="developers.html">Developers</a>
<a href="roadmap.html">Roadmap</a>
<a href="contact.html" class="active">Contact</a>
<div class="nav-dropdown">
<button class="nav-drop-btn">
MVPs <span class="chevron">▾</span>
</button>
<div class="nav-drop-menu">
<a href="mvps.html#identity-node">Identity Node</a>
<a href="mvps.html#agent-console">Agent Console</a>
<a href="mvps.html#verifier-console">Verifier Console</a>
<a href="mvps.html#livre-vault">Livre Vault</a>
<a href="mvps.html#id-kernel">ID Kernel</a>
</div>
</div>
<a
href="https://livre-os.github.io/solivre-mvp-ui/agent.html"
target="_blank"
rel="noreferrer"
>
MVP Agent
</a>
<a
href="https://livre-os.github.io/solivre-mvp-ui/verifier.html"
target="_blank"
rel="noreferrer"
>
MVP Verifier
</a>
</nav>
</div>
</header>
<main>
<section class="section">
<div class="container">
<h1>Contact</h1>
<p class="section-lead">
LIVRE OS is currently in active design and early specification. If you’re interested in
building, auditing, or integrating, reach out and let’s talk.
</p>
<article class="card">
<h3>Get in touch</h3>
<p class="contact-note">
For collaborations, technical discussions, or ecosystem alignment, you can contact:
</p>
<ul class="bullets">
<li>
Email:
<a href="mailto:oborson2@gmail.com">@livre</a>
</li>
<li>
Site:
<a href="https://livre-os.github.io/website/" target="_blank" rel="noreferrer">
LIVRE OS
</a>
</li>
<li>
GitHub:
<a href="https://github.com/LIVRE-OS" target="_blank" rel="noreferrer">
LIVRE OS
</a>
</li>
<li>
Docs:
<a
href="https://www.notion.so/LIVRE-OS-2ae7a284a873807085a5c7bcdb5b1e43"
target="_blank"
rel="noreferrer"
class="doc-pill"
>
LIVRE OS · Public Notion
</a>
</li>
</ul>
</article>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-inner">
<span>© <span id="year"></span> LIVRE OS · Sovereign Identity Operating System</span>
<span class="footer-note">
Solivre · LivreID · LivreVault · Built for COTI gcEVM · Experimental, not production-ready.
</span>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>