-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
272 lines (246 loc) Β· 7.99 KB
/
Copy pathindex.html
File metadata and controls
272 lines (246 loc) Β· 7.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Becoming Album - Production Tools</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
text-align: center;
}
h1 {
color: #333;
margin-bottom: 20px;
font-size: 3em;
font-weight: 300;
}
.subtitle {
color: #666;
margin-bottom: 40px;
font-size: 1.2em;
}
.tool-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 40px;
}
.tool-card {
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
}
.tool-card:hover {
transform: translateY(-5px);
border-color: #667eea;
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}
.tool-icon {
font-size: 3em;
margin-bottom: 20px;
}
.tool-title {
font-size: 1.5em;
font-weight: 600;
color: #333;
margin-bottom: 15px;
}
.tool-description {
color: #666;
margin-bottom: 25px;
line-height: 1.6;
}
.tool-button {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 30px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.tool-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.project-info {
margin-top: 40px;
padding: 20px;
background: #f8f9fa;
border-radius: 15px;
text-align: left;
}
.project-info h3 {
color: #333;
margin-bottom: 15px;
}
.project-info p {
color: #666;
line-height: 1.6;
margin-bottom: 10px;
}
.folder-structure {
background: #2d3748;
color: #e2e8f0;
padding: 20px;
border-radius: 10px;
font-family: 'Monaco', 'Menlo', monospace;
font-size: 0.9em;
margin-top: 15px;
overflow-x: auto;
}
/* Responsive design */
@media (max-width: 768px) {
body {
padding: 10px;
}
.container {
padding: 20px;
max-width: 100%;
}
.tools-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.tool-card {
padding: 20px;
}
.tool-title {
font-size: 1.3em;
}
.tool-description {
font-size: 0.95em;
}
h1 {
font-size: 2.5rem;
}
.tagline {
font-size: 1.1em;
}
.tool-button {
padding: 12px 20px;
font-size: 14px;
}
}
@media (max-width: 480px) {
.container {
padding: 15px;
}
.tool-card {
padding: 15px;
}
.tool-title {
font-size: 1.2em;
}
.tool-description {
font-size: 0.9em;
}
h1 {
font-size: 2rem;
}
.tagline {
font-size: 1em;
}
.tool-button {
padding: 10px 15px;
font-size: 13px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>π§ Becoming Album</h1>
<p class="subtitle">Production Tools & Workflow</p>
<div class="tool-grid">
<div class="tool-card">
<div class="tool-icon">βοΈ</div>
<div class="tool-title">Add New Entry</div>
<div class="tool-description">
Create a new production journal entry with detailed session notes, technical details, and creative insights.
</div>
<a href="http://localhost:8082/src/ui/add-entry.html" class="tool-button">Add Entry</a>
</div>
<div class="tool-card">
<div class="tool-icon">π</div>
<div class="tool-title">Read Entries</div>
<div class="tool-description">
Browse and read your existing journal entries. View your creative process history and reference past sessions.
</div>
<a href="http://localhost:8082/src/ui/read-entries.html" class="tool-button">Read Entries</a>
</div>
<div class="tool-card">
<div class="tool-icon">π΅</div>
<div class="tool-title">Album Overview</div>
<div class="tool-description">
Track your album progress, manage songs, and see completion status. Visual dashboard for your "Becoming" album.
</div>
<a href="http://localhost:8082/album-overview" class="tool-button">Album Overview</a>
</div>
<div class="tool-card">
<div class="tool-icon">π¨</div>
<div class="tool-title">Creative Tools</div>
<div class="tool-description">
Break through creative blocks with chord progression generator. Pick key/mode and get inspired with fresh progressions.
</div>
<a href="http://localhost:8082/creative-tools" class="tool-button">Creative Tools</a>
</div>
<div class="tool-card">
<div class="tool-icon">πΎ</div>
<div class="tool-title">Git Operations</div>
<div class="tool-description">
Commit and push your changes to GitHub with one click. Keep your project backed up and version controlled.
</div>
<button class="tool-button" onclick="commitAndPush()" style="background: #24292e; color: white; border: none; cursor: pointer;">Commit & Push</button>
</div>
</div>
</div>
<script>
// Git Functions
function commitAndPush() {
fetch('http://localhost:8082/api/git-commit', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
}
})
.then(response => response.json())
.then(data => {
if (data.success) {
alert(`β
${data.message}`);
} else {
alert(`β ${data.message}`);
}
})
.catch(error => {
console.error('Error:', error);
alert('β Error connecting to server for Git operations.');
});
}
</script>
</body>
</html>