forked from fearless-labs1/theta-audio-mvp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (123 loc) · 4.2 KB
/
index.html
File metadata and controls
125 lines (123 loc) · 4.2 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
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale-1.0">
<!-- 🛡️ Sentinel: Added Content-Security-Policy to prevent XSS attacks -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'none'; style-src 'self' 'unsafe-inline';">
<!-- 🛡️ Sentinel: Added security headers to prevent clickjacking and MIME-sniffing -->
<meta http-equiv="X-Frame-Options" content="DENY">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta name="referrer" content="no-referrer">
<title>Theta – Downloads</title>
<!-- ⚡ Bolt: Preload the LCP image to improve page load speed -->
<link rel="preload" href="logo.png" as="image">
<style>
:root {
--bg-dark: #0b0e13;
--theta-blue: #3a5ee8;
--theta-light-blue: #6c89ff;
--text-light: #dbe1ff;
--disabled: #4a4f63;
}
body {
margin: 0;
font-family: "Inter", Arial, sans-serif;
background: var(--bg-dark);
color: var(--text-light);
display: flex;
flex-direction: column;
align-items: center;
}
header {
text-align: center;
padding: 40px 20px 10px;
}
.logo-img {
width: 260px;
max-width: 80%;
margin-bottom: 10px;
}
.tagline {
font-size: 16px;
color: #9aa3c4;
margin-top: 5px;
}
.card {
background: #11151c;
margin-top: 30px;
padding: 35px;
border-radius: 14px;
width: 90%;
max-width: 440px;
box-shadow: 0 0 25px rgba(58, 94, 232, 0.25);
text-align: center;
}
h2 {
color: var(--theta-light-blue);
font-weight: 600;
}
.btn {
display: block;
background: var(--theta-blue);
padding: 15px 32px;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
color: white;
text-decoration: none;
margin: 18px 0;
box-shadow: 0 4px 18px rgba(58, 94, 232, 0.45);
transition: 0.25s;
}
.btn:hover {
background: var(--theta-light-blue);
box-shadow: 0 6px 24px rgba(108, 137, 255, 0.55);
}
.btn-disabled {
background: var(--disabled);
cursor: not-allowed;
box-shadow: none;
}
.btn-disabled:hover {
background: var(--disabled);
box-shadow: none;
}
footer {
margin-top: 50px;
padding: 20px;
font-size: 13px;
color: #7081a7;
}
</style>
</head>
<body>
<header>
<!-- Theta logo via relative path -->
<img class="logo-img" src="logo.png" alt="Theta Logo">
<div class="tagline">Audio of the Future • Built with Purpose</div>
</header>
<div class="card">
<h2>Download Theta</h2>
<p>Select your platform below.</p>
<!-- ANDROID BUTTON -->
<a class="btn" href="intent://github.com/fearless-labs1/theta-audio-mvp/releases/download/v.2/Theta_Android.apk#Intent;scheme=https;end" rel="noopener noreferrer">
📱 Download for Android (APK)
</a>
<!-- WINDOWS BUTTON -->
<a class="btn" href="https://github.com/fearless-labs1/theta-audio-mvp/releases/download/v3/ThetaSetup-v3.0.0.exe" rel="noopener noreferrer">
🖥️ Download for Windows (EXE)
</a>
<!-- IOS BUTTON (COMING SOON) -->
<a class="btn btn-disabled" role="button" aria-disabled="true">
🍎 iOS Version – Coming Soon
</a>
<p style="margin-top:25px; font-size:14px; color:#9aa3c4;">
All downloads are delivered securely via GitHub Releases.
</p>
</div>
<footer>
© 2025 Theta • Fearless Labs
</footer>
</body>
</html>