-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
321 lines (315 loc) · 9.63 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sandymount - Open Collaboration Meets Innovative Technology</title>
<style>
:root {
--soft-lavender: #e6e6fa;
--pale-periwinkle: #ccccff;
--light-sage: #c1e1c1;
--soft-peach: #ffdab9;
--muted-coral: #f08080;
--deep-blue: #4682b4;
--white: #ffffff;
--deep-purple: #483d8b;
--sky-blue: #87ceeb;
--soft-white: #f5f5f5; /* New color */
}
body,
html {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(
135deg,
var(--soft-white),
var(--soft-lavender),
var(--pale-periwinkle)
);
color: var(--deep-purple);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 50px 0;
}
h1 {
font-size: 3.5em;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
color: var(--deep-purple);
}
.tagline {
font-size: 1.5em;
margin-bottom: 30px;
}
.cta-button {
display: inline-block;
padding: 15px 30px;
background-color: var(--deep-purple);
color: var(--white);
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: all 0.3s ease;
}
.cta-button:hover {
background-color: var(--sky-blue);
color: var(--deep-blue);
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
section {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
color: var(--deep-purple);
border-bottom: 2px solid var(--sky-blue);
padding-bottom: 10px;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin-bottom: 10px;
}
li::before {
content: '• ';
color: var(--sky-blue);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.feature-item {
background-color: rgba(255, 255, 255, 0.7);
padding: 20px;
border-radius: 5px;
transition: all 0.3s ease;
}
.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 20px;
background-color: var(--deep-purple);
color: var(--white);
margin-top: 50px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Sandymount</h1>
<p class="tagline">
Where Open Collaboration Meets Innovative Technology
</p>
<a
href="https://github.com/sandy-mount/sandymount/"
target="_blank"
rel="noopener noreferrer"
class="cta-button"
>Join the Revolution</a
>
</header>
<section>
<h2>What is Sandymount?</h2>
<p>
<strong
>Sandymount brings humans and intelligent systems together in a
harmonious environment</strong
>. By fusing strengths from open platforms we're crafting a unified
ecosystem where innovation and creativity flourish.
</p>
<p>At the core of Sandymount is the SAND stack:</p>
<ul>
<li>
<a
href="https://solidproject.org/"
target="_blank"
rel="noopener noreferrer"
><strong>S</strong>olid</a
>
: for decentralized data storage and user control
</li>
<li>
<a
href="https://activitypub.rocks/"
target="_blank"
rel="noopener noreferrer"
><strong>A</strong>ctivityPub</a
>
: enabling federated social networking
</li>
<li>
<a
href="https://nostr.net/"
target="_blank"
rel="noopener noreferrer"
><strong>N</strong>ostr</a
>
: providing a resilient relay system
</li>
<li>
<a
href="https://soapbox.pub/ditto/"
target="_blank"
rel="noopener noreferrer"
><strong>D</strong>itto</a
>
: combining a world class user interface with scalable backend and
bridges
</li>
</ul>
<p>
This powerful combination forms the foundation of our open,
collaborative ecosystem.
</p>
</section>
<section>
<h2>Why Sandymount?</h2>
<ul>
<li>
<strong>Unified Open Systems:</strong> We integrate cutting-edge
open technologies to create a seamless, interconnected experience
for all users.
</li>
<li>
<strong>Bridging Humans and Technology:</strong> Sandymount develops
evolving specifications and protocols that serve as bridges,
enabling effortless collaboration between people and intelligent
agents.
</li>
<li>
<strong>Enhanced Collaboration:</strong> In our ecosystem, humans
guide and inspire while advanced systems support and amplify our
capabilities, fostering a new level of productivity.
</li>
<li>
<strong>Safe and Supportive Innovation:</strong> We're committed to
responsible development, ensuring that technology serves humanity's
best interests while promoting safety and security.
</li>
</ul>
</section>
<section>
<h2>Key Features</h2>
<div class="feature-grid">
<div class="feature-item">
<h3>Intelligent Collaboration</h3>
<p>
Experience a platform where interactions are enriched through
smart support, making teamwork more intuitive and efficient.
</p>
</div>
<div class="feature-item">
<h3>Adaptive Learning Systems</h3>
<p>
Our technology evolves with you, remembering past interactions to
provide a more personalized and effective experience over time.
</p>
</div>
<div class="feature-item">
<h3>Unified Social Platforms and Apps</h3>
<p>
Enjoy a cohesive network of social interactions and applications,
interconnected to offer a richer and more engaging user
experience.
</p>
</div>
<div class="feature-item">
<h3>Evolving Specifications</h3>
<p>
Stay ahead with protocols that adapt and grow, ensuring seamless
integration with future technologies and standards.
</p>
</div>
</div>
</section>
<section id="get-involved">
<h2>Get Involved</h2>
<div class="feature-grid">
<div class="feature-item">
<h3>For Developers and Innovators</h3>
<ul>
<li>
Contribute Code: Help build the backbone of Sandymount by
contributing to our open-source repositories.
</li>
<li>
Propose Ideas: Your innovative concepts can shape the future of
collaborative technology.
</li>
</ul>
</div>
<div class="feature-item">
<h3>For Enthusiasts and Visionaries</h3>
<ul>
<li>
Join the Community: Engage with others who share your passion
for technology and collaboration.
</li>
<li>
Spread the Word: Help us grow by sharing Sandymount with your
network.
</li>
</ul>
</div>
</div>
</section>
<section>
<h2>The Future is Collaborative</h2>
<p>
Imagine a world where technology doesn't just serve us but works
<strong>with</strong> us—a world where human creativity and
technological innovation come together to create something truly
extraordinary.
</p>
<p><strong>That's the world Sandymount is building.</strong></p>
</section>
<footer>
<p>
Sandymount: Where open collaboration meets innovative technology,
uniting humans and intelligent systems to build in harmony.
</p>
<a
href="https://github.com/sandy-mount/sandymount/"
target="_blank"
rel="noopener noreferrer"
class="cta-button"
>Join Us Today</a
>
<p style="margin-top: 20px">
<a
href="https://github.com/sandy-mount/sandymount/"
target="_blank"
rel="noopener noreferrer"
style="color: var(--white); text-decoration: underline"
>
Visit our GitHub Project Page
</a>
</p>
</footer>
</div>
</body>
</html>