-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebooks.html
More file actions
286 lines (253 loc) · 12.4 KB
/
Copy pathebooks.html
File metadata and controls
286 lines (253 loc) · 12.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>FutureStack Intelligence — Ebooks</title>
<link rel="stylesheet" href="shared.css">
<style>
.page-hero {
position:relative;z-index:1;
background:linear-gradient(135deg,#06041a 0%,#090620 100%);
padding:64px 40px 48px;
border-bottom:1px solid var(--glass-border);
text-align:center;
}
.ebooks-grid {
display:grid;
grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
gap:24px;
}
.ebook-card {
background:var(--glass);
border:1px solid var(--glass-border);
border-radius:8px;
overflow:hidden;
transition:all 0.35s;
}
.ebook-card:hover {
transform:translateY(-6px);
border-color:rgba(123,47,247,0.4);
box-shadow:0 24px 64px rgba(0,0,0,0.6);
}
.ebook-cover {
height:240px;
overflow:hidden;
position:relative;
background:linear-gradient(135deg,#080620,#0d0830);
}
.ebook-cover img {
width:100%;height:100%;
object-fit:cover;
object-position:top;
transition:transform 0.4s;
}
.ebook-card:hover .ebook-cover img { transform:scale(1.04); }
.ebook-placeholder {
height:200px;
background:linear-gradient(135deg,rgba(0,234,255,0.08),rgba(123,47,247,0.15));
display:flex;flex-direction:column;
align-items:center;justify-content:center;
gap:10px;
}
.ebook-placeholder span:first-child { font-size:52px; }
.ebook-placeholder span:last-child { font-family:var(--font-head);font-size:10px;letter-spacing:2px;color:var(--cyan);opacity:0.7; }
.ebook-body { padding:22px; }
.ebook-genre { font-family:var(--font-head);font-size:8px;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);margin-bottom:8px; }
.ebook-card h3 { font-family:var(--font-head);font-size:13px;color:white;margin-bottom:10px;line-height:1.4; }
.ebook-card p { font-size:13px;color:var(--muted);line-height:1.7;margin-bottom:18px;font-weight:300; }
.platform-label { font-family:var(--font-head);font-size:8px;letter-spacing:2px;text-transform:uppercase;color:var(--muted);display:block;margin-bottom:10px; }
.platform-btns { display:flex;gap:8px;flex-wrap:wrap; }
.btn-pl {
display:inline-flex;align-items:center;gap:6px;
padding:9px 13px;border-radius:3px;
text-decoration:none;
font-family:var(--font-head);font-size:9px;font-weight:700;letter-spacing:1px;
border:1px solid transparent;
transition:all 0.3s;
white-space:nowrap;
}
.btn-pl:hover { transform:translateY(-2px); }
.btn-amazon { background:rgba(255,153,0,0.12);border-color:rgba(255,153,0,0.35);color:#ff9900; }
.btn-amazon:hover { background:rgba(255,153,0,0.22);box-shadow:0 0 12px rgba(255,153,0,0.25); }
.btn-gumroad { background:rgba(255,144,104,0.12);border-color:rgba(255,144,104,0.35);color:#ff9068; }
.btn-gumroad:hover { background:rgba(255,144,104,0.22);box-shadow:0 0 12px rgba(255,144,104,0.25); }
.btn-payhip { background:rgba(0,150,255,0.12);border-color:rgba(0,150,255,0.35);color:#3ab0ff; }
.btn-payhip:hover { background:rgba(0,150,255,0.22);box-shadow:0 0 12px rgba(0,150,255,0.25); }
.notify-bar {
text-align:center;
margin-top:48px;
padding:32px;
background:var(--glass);
border:1px solid var(--glass-border);
border-radius:6px;
}
.notify-bar p { color:var(--muted);font-size:14px;margin-bottom:20px;line-height:1.7; }
.notify-form { display:flex;gap:10px;max-width:440px;margin:0 auto;flex-wrap:wrap; }
.notify-form input { flex:1;min-width:200px; }
.notify-form a {
background:linear-gradient(135deg,var(--cyan),var(--blue));
color:var(--dark);padding:13px 20px;border-radius:4px;
text-decoration:none;font-family:var(--font-head);font-size:10px;
font-weight:700;letter-spacing:1px;white-space:nowrap;
display:flex;align-items:center;transition:all 0.3s;
}
.notify-form a:hover { box-shadow:0 0 20px rgba(0,234,255,0.4); }
@media (max-width:768px) {
.page-hero { padding:48px 20px 36px; }
.ebooks-grid { grid-template-columns:1fr;max-width:400px;margin:0 auto; }
.ebook-cover { height:220px; }
.platform-btns { gap:6px; }
.notify-form { flex-direction:column; }
.notify-form input,.notify-form a { width:100%;justify-content:center;text-align:center; }
}
</style>
</head>
<body>
<nav class="navbar">
<a href="index.html" class="nav-logo">
<img src="logo.png" alt="FutureStack">
<div class="nav-brand-text">FutureStack<span>Intelligence</span></div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="ebooks.html" class="active">Ebooks</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html" class="nav-cta">Work With Us</a></li>
</ul>
<div class="hamburger" id="ham"><span></span><span></span><span></span></div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="ebooks.html" class="active">Ebooks</a>
<a href="courses.html">Courses</a>
<a href="contact.html" class="m-cta">Work With Us</a>
</div>
<div class="page-wrap">
<div class="page-hero">
<div class="section-tag" style="justify-content:center;">Knowledge Products</div>
<h1 class="section-title">Ebooks & <span>Resources</span></h1>
<p style="color:var(--muted);font-size:15px;max-width:500px;margin:0 auto;line-height:1.8;font-weight:300;">Practical, no-fluff tech knowledge — written for people who want to understand and apply, not just read.</p>
</div>
<div class="container">
<div class="ebooks-grid">
<!-- BOOK 1 — AI POWERED ETHICAL HACKING -->
<div class="ebook-card">
<div class="ebook-cover"><img src="book1-cover.jpg" alt="AI-Powered Ethical Hacking" /></div>
<div class="ebook-body">
<div class="ebook-genre">Cybersecurity</div>
<h3>AI-Powered Ethical Hacking Starter Kit</h3>
<p>The complete beginner's guide to learning cybersecurity faster using AI as your personal tutor. From zero to bug bounty ready in 30 days.</p>
<span class="platform-label">Choose your platform:</span>
<div class="platform-btns">
<a href="YOUR_AMAZON_LINK_HERE" target="_blank" class="btn-pl btn-amazon">🛍 Amazon</a>
<a href="https://ghostwriterfti.gumroad.com/l/ijitki" target="_blank" class="btn-pl btn-gumroad">🟠 Gumroad</a>
<a href="https://payhip.com/b/cbBmg" target="_blank" class="btn-pl btn-payhip">💙 Payhip</a>
</div>
</div>
</div>
<!-- BOOK 2 — THE DIGITAL GHOST -->
<div class="ebook-card">
<div class="ebook-cover"><img src="Digital%20Ghost.png" alt="The Digital Ghost" /></div>
<div class="ebook-body">
<div class="ebook-genre">Privacy & Security</div>
<h3>The Digital Ghost</h3>
<p>How to vanish, reappear, and dominate the modern web. A practical playbook for taking full control of your digital identity.</p>
<span class="platform-label">Choose your platform:</span>
<div class="platform-btns">
<a href="YOUR_AMAZON_LINK_HERE" target="_blank" class="btn-pl btn-amazon">🛍 Amazon</a>
<a href="https://ghostwriterfti.gumroad.com/l/cwxnb" target="_blank" class="btn-pl btn-gumroad">🟠 Gumroad</a>
<a href="https://payhip.com/b/Dix5M" target="_blank" class="btn-pl btn-payhip">💙 Payhip</a>
</div>
</div>
</div>
<!-- BOOK 3 — DARK WEB EXPLAINED -->
<div class="ebook-card">
<div class="ebook-cover"><img src="Dark%20web.png" alt="Dark Web Explained" /></div>
<div class="ebook-body">
<div class="ebook-genre">Cybersecurity</div>
<h3>Dark Web Explained</h3>
<p>What it is, how it works, and how to stay safe. Strip away the myths and get the honest truth about the internet's most misunderstood layer.</p>
<span class="platform-label">Choose your platform:</span>
<div class="platform-btns">
<a href="YOUR_AMAZON_LINK_HERE" target="_blank" class="btn-pl btn-amazon">🛍 Amazon</a>
<a href="https://ghostwriterfti.gumroad.com/l/depbg" target="_blank" class="btn-pl btn-gumroad">🟠 Gumroad</a>
<a href="https://payhip.com/b/Un7ms" target="_blank" class="btn-pl btn-payhip">💙 Payhip</a>
</div>
</div>
</div>
<!-- BOOK 4 — 10-MINUTE AGENTIC AI AUDIT (FREE) -->
<div class="ebook-card">
<div class="ebook-cover"><img src="Ai%20audit.png" alt="The 10-Minute Agentic AI Audit" /></div>
<div class="ebook-body">
<div class="ebook-genre">AI Security</div>
<h3>The 10-Minute Agentic AI Audit</h3>
<p>Stop agent hijacking before it starts. A free 5-page guide with a Python script to test your AI agent for prompt injection vulnerabilities.</p>
<span class="platform-label" style="color:var(--cyan);">🎁 Free Download:</span>
<div class="platform-btns">
<a href="https://ghostwriterfti.gumroad.com/l/ypxck" target="_blank" class="btn-pl btn-gumroad">🟠 Gumroad</a>
<a href="https://payhip.com/b/fW0Uz" target="_blank" class="btn-pl btn-payhip">💙 Payhip</a>
</div>
</div>
</div>
<!-- BOOK 5 — THE AGENTIC FORTRESS -->
<div class="ebook-card">
<div class="ebook-cover"><img src="Agentic%20Fortress.png" alt="The Agentic Fortress" /></div>
<div class="ebook-body">
<div class="ebook-genre">AI Security & Automation</div>
<h3>The Agentic Fortress</h3>
<p>Full security and automation system for AI agents. 10 chapters, 5 production-ready Python scripts, security templates and compliance checklists.</p>
<span class="platform-label">Choose your platform:</span>
<div class="platform-btns">
<a href="YOUR_AMAZON_LINK_HERE" target="_blank" class="btn-pl btn-amazon">🛍 Amazon</a>
<a href="https://ghostwriterfti.gumroad.com/l/pwghz" target="_blank" class="btn-pl btn-gumroad">🟠 Gumroad</a>
<a href="https://payhip.com/b/c62Pa" target="_blank" class="btn-pl btn-payhip">💙 Payhip</a>
</div>
</div>
</div>
<!-- ============================================================
HOW TO ADD A NEW BOOK — COPY THIS BLOCK
============================================================
STEP 1: Copy one of the ebook-card blocks above
STEP 2: Paste it above this comment
STEP 3: Replace cover filename, title, description and links
STEP 4: Upload cover image to GitHub with exact same filename
STEP 5: Commit. Done.
============================================================ -->
</div>
<!-- NOTIFY -->
<div class="notify-bar">
<h3 class="section-title" style="font-size:20px;margin-bottom:10px;">More Ebooks <span>Dropping Soon</span></h3>
<p>Subscribe to get notified the moment a new book launches. No spam. Ever.</p>
<div class="notify-form">
<input class="form-input" type="email" placeholder="your@email.com" />
<a href="https://forms.gle/28B1ozhh3nRfvY5P6" target="_blank">Notify Me</a>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-inner">
<div class="footer-brand"><img src="logo.png" alt="FutureStack"><div class="footer-brand-name">FutureStack Intelligence<span>© 2026 All Rights Reserved</span></div></div>
<div class="footer-links">
<a href="index.html">Home</a><a href="services.html">Services</a><a href="ebooks.html">Ebooks</a>
<a href="courses.html">Courses</a><a href="contact.html">Contact</a>
<a href="https://x.com/FUTURESTACK001" target="_blank">X / Twitter</a>
<a href="https://www.linkedin.com/in/futurestackintelligence" target="_blank">LinkedIn</a>
</div>
<div class="footer-copy">Built with precision. Delivered globally.</div>
</div>
</footer>
<div class="bottom-nav">
<div class="bottom-nav-inner">
<a href="index.html" class="bnav-item"><span class="bnav-icon">🏠</span><span class="bnav-label">Home</span></a>
<a href="services.html" class="bnav-item"><span class="bnav-icon">⚡</span><span class="bnav-label">Services</span></a>
<a href="ebooks.html" class="bnav-item active"><span class="bnav-icon">📚</span><span class="bnav-label">Ebooks</span></a>
<a href="contact.html" class="bnav-item"><span class="bnav-icon">✉️</span><span class="bnav-label">Contact</span></a>
</div>
</div>
<script src="shared.js"></script>
</body>
</html>