-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathqbitconnect.html
More file actions
384 lines (356 loc) · 16.6 KB
/
Copy pathqbitconnect.html
File metadata and controls
384 lines (356 loc) · 16.6 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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>qBitConnect - qBittorrent Client Integration</title>
<meta name="description" content="qBitConnect provides seamless integration with qBittorrent, the popular open-source torrent client. Features RSS feeds, search plugins, and automated downloading.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Theme Toggle -->
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
</button>
<!-- Mobile Menu Overlay -->
<div class="mobile-menu-overlay"></div>
<!-- Header -->
<header class="header">
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="logo">
<div class="logo-icon">
<img src="assets/logo_transparent.png" alt="ShareConnect Logo" class="logo-image">
</div>
<span>ShareConnect</span>
</a>
<div class="nav-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="#features" class="nav-link">Features</a>
<a href="#integration" class="nav-link">Integration</a>
<a href="products.html" class="nav-link">Products</a>
<a href="manuals.html" class="nav-link">Manuals</a>
<a href="https://github.com/shareconnect" class="nav-link github">
<i class="fab fa-github"></i>
GitHub
</a>
</div>
<!-- Mobile Menu -->
<div class="nav-menu mobile">
<a href="index.html" class="nav-link">Home</a>
<a href="#features" class="nav-link">Features</a>
<a href="#integration" class="nav-link">Integration</a>
<a href="products.html" class="nav-link">Products</a>
<a href="manuals.html" class="nav-link">Manuals</a>
<a href="https://github.com/shareconnect" class="nav-link github">
<i class="fab fa-github"></i>
GitHub
</a>
</div>
<button class="mobile-menu-toggle" aria-label="Toggle menu">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<div class="hero-badge">
<span class="badge-text">Torrent Client</span>
</div>
<h1 class="hero-title">
qBitConnect
<span class="gradient-text">qBittorrent Integration</span>
</h1>
<p class="hero-subtitle">
Send torrent links directly to your torrent client. Start downloads instantly with one tap - no more copying URLs or switching apps.
</p>
<div class="hero-features">
<div class="hero-feature">
<i class="fas fa-rss"></i>
<span>RSS Support</span>
</div>
<div class="hero-feature">
<i class="fas fa-search"></i>
<span>Search Plugins</span>
</div>
<div class="hero-feature">
<i class="fas fa-list"></i>
<span>Queue Management</span>
</div>
</div>
<div class="hero-actions">
<a href="https://github.com/shareconnect" class="btn btn-primary btn-large">
<i class="fab fa-github"></i>
Download qBitConnect
</a>
<a href="manuals.html" class="btn btn-secondary btn-large">
<i class="fas fa-book"></i>
Setup Guide
</a>
</div>
<div class="hero-stats">
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Open Source</div>
</div>
<div class="stat">
<div class="stat-number">Web UI</div>
<div class="stat-label">Compatible</div>
</div>
<div class="stat">
<div class="stat-number">Cross</div>
<div class="stat-label">Platform</div>
</div>
</div>
</div>
<div class="hero-visual">
<div class="hero-illustration">
<img src="assets/hero-illustration.svg" alt="qBitConnect Hero Illustration" class="hero-image">
</div>
<div class="floating-elements">
<div class="floating-card card-1">
<i class="fas fa-magnet"></i>
<span>Torrent Downloads</span>
</div>
<div class="floating-card card-2">
<i class="fas fa-rss"></i>
<span>RSS Feeds</span>
</div>
<div class="floating-card card-3">
<i class="fas fa-search"></i>
<span>Search Integration</span>
</div>
<div class="floating-card card-4">
<i class="fas fa-cogs"></i>
<span>Advanced Features</span>
</div>
</div>
</div>
</div>
<div class="hero-bg-pattern"></div>
<div class="hero-bg-shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features">
<div class="container">
<div class="section-header">
<h2>Why Choose qBitConnect?</h2>
<p>Professional torrent management with qBittorrent's full feature set</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-rss"></i>
</div>
<h3>RSS Feed Automation</h3>
<p>Automatically download torrents from RSS feeds. Set up rules for automatic downloading based on filters, quality preferences, and scheduling.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-search"></i>
</div>
<h3>Search Plugins</h3>
<p>Integrated search functionality with support for multiple torrent search engines. Search directly from the app and add torrents with one tap.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-list"></i>
</div>
<h3>Advanced Queue Management</h3>
<p>Professional queue management with bandwidth limits, download priorities, and automatic queue management based on rules and schedules.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-tags"></i>
</div>
<h3>Categories & Tags</h3>
<p>Organize your downloads with categories and tags. Set up automatic categorization rules and manage your library efficiently.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Built-in Encryption</h3>
<p>Support for protocol encryption and peer-to-peer encryption. Protect your downloads with industry-standard encryption methods.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-web"></i>
</div>
<h3>Web UI Integration</h3>
<p>Full compatibility with qBittorrent's web interface. Access your downloads from any device with a modern web browser.</p>
</div>
</div>
</div>
</section>
<!-- Integration Section -->
<section id="integration" class="connectors">
<div class="container">
<div class="section-header">
<h2>Seamless Integration</h2>
<p>qBitConnect works perfectly with the ShareConnect ecosystem</p>
</div>
<div class="connectors-grid">
<div class="connector-category">
<div class="category-header">
<div class="category-icon torrent">
<i class="fas fa-magnet"></i>
</div>
<h3>ShareConnector</h3>
</div>
<p>Universal sharing from any app</p>
<div class="connector-list">
<span class="connector-tag">Magnet Links</span>
<span class="connector-tag">.torrent Files</span>
<span class="connector-tag">Auto Routing</span>
</div>
</div>
<div class="connector-category">
<div class="category-header">
<div class="category-icon media">
<i class="fas fa-tv"></i>
</div>
<h3>Media Servers</h3>
</div>
<p>Direct integration with Plex, Jellyfin</p>
<div class="connector-list">
<span class="connector-tag">Auto Import</span>
<span class="connector-tag">Library Sync</span>
<span class="connector-tag">Metadata</span>
</div>
</div>
<div class="connector-category">
<div class="category-header">
<div class="category-icon cloud">
<i class="fas fa-cloud"></i>
</div>
<h3>Cloud Storage</h3>
</div>
<p>Upload completed downloads</p>
<div class="connector-list">
<span class="connector-tag">Nextcloud</span>
<span class="connector-tag">Seafile</span>
<span class="connector-tag">Auto Upload</span>
</div>
</div>
<div class="connector-category featured">
<div class="category-visual">
<div class="mascot-placeholder">
<i class="fas fa-magnet"></i>
<p>qBitConnect</p>
</div>
</div>
<div class="category-content">
<h3>Professional Torrenting</h3>
<p>Experience the full power of qBittorrent with modern Android integration and seamless ecosystem connectivity.</p>
<a href="products.html" class="btn btn-outline">Explore Ecosystem</a>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<div class="cta-content">
<h2>Ready to Experience Professional Torrenting?</h2>
<p>Get qBitConnect and unlock the full potential of qBittorrent on Android.</p>
<div class="cta-actions">
<a href="https://github.com/shareconnect" class="btn btn-primary btn-large">
<i class="fab fa-github"></i>
Download qBitConnect
</a>
<a href="manuals.html" class="btn btn-outline btn-large">
<i class="fas fa-book"></i>
Setup Guide
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<div class="logo-icon">
<img src="assets/logo_transparent.png" alt="ShareConnect Logo" class="logo-image">
</div>
<span>ShareConnect</span>
</div>
<p>Revolutionizing media sharing with intelligent connectors for all your favorite services.</p>
<div class="social-links">
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Discord"><i class="fab fa-discord"></i></a>
</div>
</div>
<div class="footer-section">
<h4>Product</h4>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#integration">Integration</a></li>
<li><a href="products.html">All Products</a></li>
<li><a href="manuals.html">User Manuals</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="https://github.com/shareconnect">GitHub</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Community</h4>
<ul>
<li><a href="#">Discord Server</a></li>
<li><a href="#">Contribute</a></li>
<li><a href="#">Bug Reports</a></li>
<li><a href="#">Feature Requests</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 ShareConnect. Made with <i class="fas fa-heart"></i> for media enthusiasts.</p>
</div>
</div>
</footer>
<!-- Toast Notifications -->
<div id="toast-container" class="toast-container"></div>
<!-- Modal/Dialog System -->
<div id="modal-overlay" class="modal-overlay"></div>
<div id="modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h3 id="modal-title">Modal Title</h3>
<button class="modal-close" aria-label="Close modal">
<i class="fas fa-times"></i>
</button>
</div>
<div id="modal-body" class="modal-body">
Modal content goes here.
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html></content>
</xai:function_call">Now let me create a few more key pages. I'll create transmissionconnect.html and jdownloaderconnect.html to show the pattern, then create the remaining pages more efficiently. Let me create transmissionconnect.html.
<xai:function_call name="write">
<parameter name="filePath">Website/transmissionconnect.html