-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules.html
More file actions
96 lines (87 loc) · 4.57 KB
/
Copy pathmodules.html
File metadata and controls
96 lines (87 loc) · 4.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore TheSecretJuice modules and Juice Packs. Interactive PowerShell steroids for your CLI workflow.">
<meta name="keywords" content="PowerShell modules, CLI enhancements, terminal tools, developer productivity">
<title>Modules - TheSecretJuice</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/components.css">
<link rel="stylesheet" href="assets/css/scrollbar.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💉</text></svg>">
</head>
<body>
<nav class="navbar">
<div class="navbar-container">
<a href="index.html" class="navbar-brand">
<span class="navbar-icon">💉</span>
<span class="gradient-text">TheSecretJuice</span>
</a>
<ul class="navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="modules.html" class="active">Modules</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="https://github.com/mini-page/TheSecretJuice" target="_blank">
<i class="fab fa-github"></i> GitHub
</a></li>
</ul>
</div>
</nav>
<div style="max-width: 1400px; margin: 0 auto; padding: 4rem 2rem;">
<div style="text-align: center; margin-bottom: 4rem;">
<h1 style="font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem;">
Available <span class="gradient-text">Steroids</span>
</h1>
<p style="font-size: 1.25rem; color: var(--text-dim); max-width: 700px; margin: 0 auto;">
Browse our collection of standalone modules and bundled Juice Packs.
Interactive, safe, and built for modern terminals.
</p>
</div>
<!-- Search & Filter -->
<div class="glass" style="padding: 1.5rem; border-radius: 16px; margin-bottom: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;">
<div style="flex: 1; position: relative; min-width: 300px;">
<i class="fas fa-search" style="position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--text-dimmer);"></i>
<input type="text" id="searchInput" placeholder="Search modules, packs, or commands..."
style="width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem 0.75rem 3rem; color: var(--text); outline: none; transition: border-color 0.3s;"
onfocus="this.style.borderColor='var(--primary)'" onblur="this.style.borderColor='var(--border)'">
</div>
<div style="display: flex; gap: 0.5rem;">
<button class="btn btn-outline" style="padding: 0.5rem 1rem; font-size: 0.85rem;" onclick="filterModules('all')">All</button>
<button class="btn btn-outline" style="padding: 0.5rem 1rem; font-size: 0.85rem;" onclick="filterModules('pack')">Packs Only</button>
<button class="btn btn-outline" style="padding: 0.5rem 1rem; font-size: 0.85rem;" onclick="filterModules('module')">Modules Only</button>
</div>
</div>
<div id="modulesContainer" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2rem;">
<!-- Modules loaded by app.js -->
</div>
</div>
<footer class="footer">
<div class="footer-content">
<div class="footer-links">
<a href="https://github.com/mini-page/TheSecretJuice" target="_blank"><i class="fab fa-github"></i> GitHub</a>
<a href="https://github.com/mini-page/TheSecretJuice/issues" target="_blank"><i class="fas fa-bug"></i> Report Issue</a>
</div>
<p class="footer-copyright">© 2025 TheSecretJuice. MIT License.</p>
</div>
</footer>
<script src="assets/js/security.js"></script>
<script src="assets/js/app.js"></script>
<script>
// Local filtering extension
function filterModules(type) {
const container = document.getElementById('modulesContainer');
let filtered = modulesData;
if (type === 'pack') {
filtered = modulesData.filter(m => m.isPack === true);
} else if (type === 'module') {
filtered = modulesData.filter(m => m.isPack !== true);
}
displayModules(filtered);
}
</script>
</body>
</html>