-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
294 lines (247 loc) · 8.12 KB
/
index.html
File metadata and controls
294 lines (247 loc) · 8.12 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="R5v8WOtd-sYLEHyfQ7DYG_5DCOyIwAl4toFetQ3nBfc" />
<title>1CArchiver – Arhivare automată baze 1C</title>
<meta name="description"
content="1CArchiver este o aplicație desktop pentru arhivarea automată a bazelor de date 1C:Enterprise. Backup securizat, SHA-256, criptare AES și sincronizare Dropbox.">
<meta name="keywords"
content="1C, 1C Enterprise, backup 1C, arhivare baze 1C, 1C Archiver, 7-Zip, Dropbox backup, резервное копирование 1C, архивирование файловых баз 1C">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "1CArchiver",
"operatingSystem": "Windows",
"applicationCategory": "Utility",
"description": "Aplicație desktop pentru arhivarea automată a bazelor 1C Enterprise",
"license": "MIT",
"url": "https://github.com/debalex77/1CArchiver"
}
</script>
<style>
:root {
--bg: #0f172a;
--card: #111827;
--text: #e5e7eb;
--muted: #9ca3af;
--accent: #3b82f6;
--accent2: #22c55e;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
background: linear-gradient(135deg, #020617, #020617 40%, #020617);
color: var(--text);
line-height: 1.6;
}
header {
padding: 64px 20px;
text-align: center;
background: radial-gradient(circle at top, #1e293b, #020617);
}
header h1 {
font-size: 3rem;
margin: 0;
letter-spacing: 1px;
}
header p {
max-width: 700px;
margin: 16px auto 0;
color: var(--muted);
font-size: 1.1rem;
}
.container {
max-width: 1100px;
margin: auto;
padding: 40px 20px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 24px;
margin-top: 20px;
}
.card {
background: linear-gradient(180deg, #020617, #020617);
border: 1px solid #1f2933;
border-radius: 14px;
padding: 24px;
transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
transform: translateY(-4px);
border-color: var(--accent);
}
.card h3 {
margin-top: 0;
font-size: 1.2rem;
}
.card p {
color: var(--muted);
font-size: 0.95rem;
}
.cta {
text-align: center;
margin-top: 60px;
}
.cta a {
display: inline-block;
margin: 10px;
padding: 14px 28px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
color: #fff;
background: linear-gradient(135deg, var(--accent), #2563eb);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta a.secondary {
background: linear-gradient(135deg, var(--accent2), #16a34a);
}
.cta a:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(59,130,246,0.35);
}
.logo {
width: 56px;
height: 56px;
filter: drop-shadow(0 0 8px rgba(255,255,255,0.6))
drop-shadow(0 0 16px rgba(59,130,246,0.6));
}
.lang-switch {
position: fixed;
top: 10px;
right: 15px;
z-index: 1000;
}
/* link */
.lang-switch a {
color: #0066cc;
text-decoration: none;
font-weight: 500;
}
.lang-switch a:hover {
text-decoration: underline;
}
/* dark mode */
@media (prefers-color-scheme: dark) {
.lang-switch a {
color: #7ab8ff;
}
.lang-switch a:hover {
color: #a6d1ff;
}
}
.first-image {
text-align: center;
margin: 10px 0;
}
.first-image img {
max-width: 100%;
height: auto;
}
footer {
padding: 30px 20px;
text-align: center;
color: var(--muted);
font-size: 0.9rem;
border-top: 1px solid #1f2933;
}
</style>
</head>
<body>
<header>
<h1 class="title">
<img src="https://raw.githubusercontent.com/debalex77/1CArchiver/master/icons/backup.png"
alt="1CArchiver logo"
class="logo">
1CArchiver
</h1>
<p>
Aplicație desktop profesională pentru <b>arhivarea automată</b> a bazelor de date
<b>1C:Enterprise</b>. Siguranță, automatizare și control total.
</p>
</header>
<div class="lang-switch">
🌍 <a href="./ru/">Русская версия</a>
</div>
<div class="first-image">
<img
src="assets/first_image.png"
width="920"
height="709"
alt="Backup 1C Enterprise – interfață aplicație"
loading="lazy"
/>
</div>
<main class="container">
<section>
<h2>🚀 Funcționalități principale</h2>
<div class="features">
<div class="card">
<h3>📦 Arhivare automată</h3>
<p>
Arhivarea completă a bazelor de date 1C folosind motor 7-Zip,
cu suport pentru programare automată.
</p>
</div>
<div class="card">
<h3>🔐 Securitate avansată</h3>
<p>
Protecție cu parolă, criptare AES și generare automată
a sumelor de control SHA-256.
</p>
</div>
<div class="card">
<h3>☁️ Sincronizare Dropbox</h3>
<p>
Încărcarea automată a arhivelor în Dropbox prin API oficial,
fără stocarea parolelor.
</p>
</div>
<div class="card">
<h3>⏱️ Automatizare completă</h3>
<p>
Integrare cu Task Scheduler, rulare în fundal și notificări
în system tray.
</p>
</div>
<div class="card">
<h3>🧾 Verificare integritate</h3>
<p>
Fiecare arhivă poate fi verificată împotriva modificărilor
sau deteriorărilor accidentale.
</p>
</div>
<div class="card">
<h3>🖥️ Interfață clară</h3>
<p>
Interfață intuitivă, meniu contextual și monitorizare vizuală
a progresului operațiilor.
</p>
</div>
</div>
</section>
<section class="cta">
<a href="https://github.com/debalex77/1CArchiver" target="_blank" rel="noopener noreferrer">
🔗 Vezi proiectul pe GitHub
</a>
<a class="secondary" href="https://github.com/debalex77/1CArchiver/releases" target="_blank" rel="noopener noreferrer">
⬇️ Descarcă ultima versiune
</a>
<a class="secondary" href="https://raw.githubusercontent.com/debalex77/1CArchiver/master/docs/1CArchiver-User-Manual-RO.pdf" target="_blank" rel="noopener noreferrer">
📄 Descarcă User Manual
</a>
</section>
</main>
<footer>
© 2025 1CArchiver · Licență MIT · Dezvoltat cu Qt / C++
</footer>
</body>
</html>