-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
beta.html
121 lines (107 loc) · 4.02 KB
/
beta.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Stream Ninja Beta Downloads | Development Versions</title>
<meta name="description" content="Download beta versions of Social Stream Ninja for testing new features and providing feedback">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body, html {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
color: #333;
background-color: #e5e5e5;
padding-bottom: 40px;
line-height: 1.6;
overflow-x: hidden;
}
header {
background: #1a1a1a;
color: #fff;
padding: 20px;
text-align: center;
}
h1 { margin: 0; font-size: 2.4em; }
.section {
padding: 20px 20px 40px 20px;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin: 20px;
border-radius: 10px;
}
.download-btn {
background-color: #007bff;
color: white;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
.download-btn:hover {
background-color: #0056b3;
color: white;
}
.warning {
background-color: #fff3cd;
border: 1px solid #ffeeba;
color: #856404;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
.logo {
max-height: 1.2em;
}
.downloads-container {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.download-section {
margin: 20px 0;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
text-align: left;
}
</style>
</head>
<body>
<header>
<h1>Social Stream Ninja Beta <img class="logo" src="https://socialstream.ninja/icons/icon-128.png"></h1>
<p>Development Versions for Testing</p>
</header>
<div class="section">
<div class="downloads-container">
<div class="warning">
⚠️ These are beta versions intended for testing. They may contain bugs or incomplete features.
</div>
<div class="download-section">
<h2>Browser Extension (Beta)</h2>
<p>Latest development version of the browser extension.</p>
<a href="https://github.com/steveseguin/social_stream/archive/refs/heads/beta.zip" class="download-btn">Download Beta Extension</a>
<p><small>After downloading, unzip and load as an unpacked extension in Chrome.</small></p>
</div>
<div class="download-section">
<h2>Desktop App (Beta)</h2>
<p>Development version of the standalone application.</p>
<a href="https://github.com/steveseguin/social_stream/releases/tag/0.0.0" class="download-btn">Download Beta Desktop App</a>
<p><small>Version 0.0.0 contains the latest development features.</small></p>
</div>
<div class="download-section">
<h2>Looking for Stable Versions?</h2>
<p>Visit our main website for production-ready downloads.</p>
<a href="https://socialstream.ninja" class="download-btn" style="background-color: #28a745;">Get Stable Version</a>
</div>
</div>
</div>
</body>
</html>