-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
729 lines (654 loc) · 29.3 KB
/
Copy pathindex.html
File metadata and controls
729 lines (654 loc) · 29.3 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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>James Karanja Maina - AI Solutions Architect & Technical Author</title>
<meta name="description" content="James Karanja Maina is a leading AI Solutions Architect and technical author specializing in AI agents, machine learning, and practical AI implementations. Author of comprehensive books on LangGraph, AutoGen, Hugging Face, and OpenAI Agents.">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #2c3e50;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-radius: 16px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
text-align: center;
border: 1px solid rgba(255,255,255,0.2);
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
background: linear-gradient(135deg, #3b82f6, #1e40af);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
overflow: hidden;
border: 3px solid rgba(255,255,255,0.9);
}
.profile-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.hero-books {
margin: 30px 0;
padding: 20px 0;
}
.hero-books-title {
font-size: 1.1em;
color: #64748b;
margin-bottom: 20px;
font-weight: 600;
}
.hero-books-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 15px;
max-width: 700px;
margin: 0 auto;
}
.hero-book {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: all 0.3s ease;
}
.hero-book:hover {
transform: translateY(-5px);
}
.hero-book img {
width: 80px;
height: 120px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
transition: all 0.3s ease;
border: 2px solid #e2e8f0;
}
.hero-book:hover img {
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
border-color: #3b82f6;
}
.hero-book span {
font-size: 0.85em;
color: #64748b;
margin-top: 8px;
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
color: #1e293b;
font-weight: 700;
}
.tagline {
font-size: 1.2em;
color: #64748b;
margin-bottom: 20px;
font-weight: 500;
}
.company {
font-size: 1.1em;
color: #3b82f6;
margin-bottom: 30px;
font-weight: 600;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 15px 30px;
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
border: none;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.btn.secondary {
background: linear-gradient(135deg, #64748b, #475569);
box-shadow: 0 4px 16px rgba(100, 116, 139, 0.3);
}
.btn.secondary:hover {
background: linear-gradient(135deg, #475569, #334155);
box-shadow: 0 8px 24px rgba(100, 116, 139, 0.4);
}
.section {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-radius: 16px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
border: 1px solid rgba(255,255,255,0.2);
}
.section h2 {
font-size: 2em;
margin-bottom: 30px;
text-align: center;
color: #1e293b;
font-weight: 700;
}
.books-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.book-card {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.book-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0,0,0,0.12);
border-color: #3b82f6;
}
.book-cover {
text-align: center;
margin-bottom: 20px;
}
.book-cover img {
width: 120px;
height: 180px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
transition: all 0.3s ease;
}
.book-card:hover .book-cover img {
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.book-title {
font-size: 1.3em;
font-weight: 700;
margin-bottom: 15px;
color: #1e293b;
}
.book-description {
color: #64748b;
margin-bottom: 20px;
line-height: 1.6;
}
.book-features {
list-style: none;
margin-bottom: 20px;
}
.book-features li {
padding: 5px 0;
color: #555;
}
.book-features li:before {
content: "✓ ";
color: #10b981;
font-weight: bold;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}
.stat-card {
background: white;
border-radius: 12px;
padding: 30px;
text-align: center;
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
border: 1px solid #e2e8f0;
}
.stat-number {
font-size: 2.5em;
font-weight: 800;
color: #3b82f6;
}
.stat-label {
color: #64748b;
font-size: 1.1em;
margin-top: 10px;
font-weight: 500;
}
.expertise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.expertise-card {
background: white;
border-radius: 12px;
padding: 25px;
text-align: center;
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.expertise-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.expertise-icon {
font-size: 3em;
margin-bottom: 15px;
color: #3b82f6;
}
.social-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
text-decoration: none;
font-size: 1.5em;
transition: all 0.3s ease;
}
.social-link:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
.testimonial {
background: #f8fafc;
border-left: 4px solid #3b82f6;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
font-style: italic;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
.header {
padding: 30px 20px;
}
h1 {
font-size: 2em;
}
.hero-books-grid {
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.hero-book img {
width: 70px;
height: 105px;
}
.hero-book span {
font-size: 0.8em;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 300px;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header Section -->
<div class="header">
<div class="profile-image">
<img src="https://www.zavora.ai/wp-content/uploads/ProfessionalPhotoJames.png" alt="James Karanja Maina - AI Solutions Architect & Technical Author" loading="lazy">
</div>
<h1>James Karanja Maina</h1>
<p class="tagline">AI Solutions Architect & Technical Author</p>
<p class="company"><i class="fas fa-building"></i> Founder of Zavora.ai • Kenya</p>
<!-- Featured Books Preview -->
<div class="hero-books">
<p class="hero-books-title">The Complete AI Blueprint Series</p>
<div class="hero-books-grid">
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/81DpVdSAclL._SY466_.jpg" alt="The Complete LangGraph Blueprint" loading="lazy">
<span>LangGraph Blueprint</span>
</div>
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/71BMyhoQXRL._SL1500_.jpg" alt="The Complete Hugging Face Blueprint" loading="lazy">
<span>Hugging Face Blueprint</span>
</div>
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/81++5AcGiDL._SY466_.jpg" alt="AutoGen AI Agent Blueprint" loading="lazy">
<span>AutoGen Blueprint</span>
</div>
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/71pbg9bBnCL._SY466_.jpg" alt="OpenAI Agents SDK Blueprint" loading="lazy">
<span>OpenAI Agents SDK</span>
</div>
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/71-Sm3B7WAL._SL1500_.jpg" alt="Unpacking DeepSeek R1" loading="lazy">
<span>Unpacking DeepSeek R1</span>
</div>
<div class="hero-book">
<img src="https://m.media-amazon.com/images/I/71gO+UTCILL._SY466_.jpg" alt="AI Startup Blueprint" loading="lazy">
<span>AI Startup Guide</span>
</div>
</div>
</div>
<div class="cta-buttons">
<a href="https://www.amazon.com/stores/James-Karanja-Maina/author/B0DPL8G1JH" class="btn" target="_blank">
<i class="fab fa-amazon"></i> View Books on Amazon
</a>
<a href="https://github.com/jkmaina" class="btn secondary" target="_blank">
<i class="fab fa-github"></i> Explore Code Examples
</a>
</div>
</div>
<!-- About Section -->
<div class="section">
<h2><i class="fas fa-user-tie"></i> About James</h2>
<p style="font-size: 1.1em; text-align: center; max-width: 800px; margin: 0 auto; color: #555;">
James Karanja Maina is a leading AI Solutions Architect and technical author specializing in practical AI agent development and enterprise AI solutions. Based in Kenya and founder of Zavora.ai, James combines deep technical expertise with hands-on industry experience to create comprehensive learning resources for developers and AI practitioners worldwide.
</p>
<div class="stats">
<div class="stat-card">
<div class="stat-number">6+</div>
<div class="stat-label">Published Books</div>
</div>
<div class="stat-card">
<div class="stat-number">150+</div>
<div class="stat-label">Code Examples</div>
</div>
<div class="stat-card">
<div class="stat-number">75+</div>
<div class="stat-label">AI Agent Projects</div>
</div>
<div class="stat-card">
<div class="stat-number">15+</div>
<div class="stat-label">Years Experience</div>
</div>
</div>
</div>
<!-- Books Section -->
<div class="section">
<h2><i class="fas fa-book"></i> Published Books</h2>
<p style="text-align: center; color: #666; margin-bottom: 30px; font-size: 1.1em;">
Comprehensive, practical guides that bridge the gap between AI theory and real-world implementation
</p>
<div class="books-grid">
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/81DpVdSAclL._SY466_.jpg" alt="The Complete LangGraph Blueprint Book Cover" loading="lazy">
</div>
<div class="book-title">The Complete LangGraph Blueprint: Build 50+ AI Agents for Business Success</div>
<div class="book-description">Master the art of building sophisticated AI agents using LangGraph. This comprehensive guide provides practical, hands-on examples for creating production-ready AI systems.</div>
<ul class="book-features">
<li>50+ practical AI agent implementations</li>
<li>Complete source code and examples</li>
<li>Business-focused use cases</li>
<li>Step-by-step tutorials</li>
</ul>
<a href="https://github.com/jkmaina/LangGraphProjects" class="btn" target="_blank">
<i class="fab fa-github"></i> View Code Examples
</a>
</div>
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/71pbg9bBnCL._SY466_.jpg" alt="The Complete OpenAI Agents SDK Blueprint Book Cover" loading="lazy">
</div>
<div class="book-title">The Complete OpenAI Agents SDK Blueprint</div>
<div class="book-description">Build production-ready AI agents using OpenAI Agents SDK in under 2 hours! Complete guide with 100+ working code examples for building real applications.</div>
<ul class="book-features">
<li>100+ working code examples</li>
<li>Production-ready implementations</li>
<li>Customer service automation</li>
<li>Research automation systems</li>
</ul>
<a href="https://www.amazon.com/Complete-OpenAI-Agents-Blueprint-Production-Ready-ebook/dp/B0FHFQ63DJ" class="btn" target="_blank">
<i class="fab fa-amazon"></i> Get on Amazon
</a>
</div>
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/81++5AcGiDL._SY466_.jpg" alt="The Complete AutoGen AI Agent Blueprint Book Cover" loading="lazy">
</div>
<div class="book-title">The Complete AutoGen AI Agent Blueprint</div>
<div class="book-description">Developer's guide to building multi-agent AI systems using Microsoft's AutoGen framework. Learn to create collaborative AI agents that work together seamlessly.</div>
<ul class="book-features">
<li>Multi-agent system architecture</li>
<li>Comprehensive code examples</li>
<li>Practical implementation guides</li>
<li>Enterprise-ready solutions</li>
</ul>
<a href="https://www.amazon.com/Complete-AutoGen-Agent-Blueprint-Developers-ebook/dp/B0FFLJT82T" class="btn" target="_blank">
<i class="fab fa-amazon"></i> Get on Amazon
</a>
</div>
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/71BMyhoQXRL._SL1500_.jpg" alt="The Complete Hugging Face Blueprint Book Cover" loading="lazy">
</div>
<div class="book-title">The Complete Hugging Face Blueprint</div>
<div class="book-description">Your comprehensive guide to mastering Hugging Face's ecosystem for natural language processing, computer vision, and machine learning applications.</div>
<ul class="book-features">
<li>Complete Hugging Face ecosystem coverage</li>
<li>Practical Python implementations</li>
<li>Real-world project examples</li>
<li>Advanced techniques and optimizations</li>
</ul>
<a href="https://github.com/jkmaina/huggingface_book" class="btn" target="_blank">
<i class="fab fa-github"></i> Access Resources
</a>
</div>
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/71-Sm3B7WAL._SL1500_.jpg" alt="Unpacking DeepSeek R1 Book Cover" loading="lazy">
</div>
<div class="book-title">Unpacking DeepSeek R1</div>
<div class="book-description">Comprehensive analysis and practical guide to understanding DeepSeek R1's revolutionary approach to AI reasoning and implementation strategies.</div>
<ul class="book-features">
<li>In-depth R1 model analysis</li>
<li>Practical implementation guides</li>
<li>Reasoning system architecture</li>
<li>Real-world applications</li>
</ul>
<a href="https://github.com/jkmaina/deepseek-r1-guide" class="btn" target="_blank">
<i class="fab fa-github"></i> Explore Guide
</a>
</div>
<div class="book-card">
<div class="book-cover">
<img src="https://m.media-amazon.com/images/I/71gO+UTCILL._SY466_.jpg" alt="The AI Startup Book Cover" loading="lazy">
</div>
<div class="book-title">The AI Startup: How To Build A Successful AI Startup</div>
<div class="book-description">Actionable strategies from 15 leading AI ventures. Learn how to build, scale, and succeed with your AI startup from industry experts and successful entrepreneurs.</div>
<ul class="book-features">
<li>15 real AI startup case studies</li>
<li>Actionable business strategies</li>
<li>Funding and scaling insights</li>
<li>Market entry strategies</li>
</ul>
<a href="https://www.amazon.com/Startup-Successful-Actionable-Strategies-Blueprint-ebook/dp/B0FDVCDW38" class="btn" target="_blank">
<i class="fab fa-amazon"></i> Get on Amazon
</a>
</div>
</div>
</div>
<!-- Expertise Section -->
<div class="section">
<h2><i class="fas fa-cogs"></i> Technical Expertise</h2>
<div class="expertise-grid">
<div class="expertise-card">
<div class="expertise-icon"><i class="fas fa-robot"></i></div>
<h3>AI Agents</h3>
<p>LangGraph, AutoGen, OpenAI Agents, Multi-agent systems</p>
</div>
<div class="expertise-card">
<div class="expertise-icon"><i class="fas fa-brain"></i></div>
<h3>Machine Learning</h3>
<p>Hugging Face, Transformers, NLP, Computer Vision</p>
</div>
<div class="expertise-card">
<div class="expertise-icon"><i class="fas fa-code"></i></div>
<h3>Development</h3>
<p>Python, Next.js, Flutter, Docker, API Development</p>
</div>
<div class="expertise-card">
<div class="expertise-icon"><i class="fas fa-cloud"></i></div>
<h3>AI Integration</h3>
<p>Google Gemini, OpenAI, Production Deployment</p>
</div>
</div>
</div>
<!-- Why Choose James Section -->
<div class="section">
<h2><i class="fas fa-star"></i> Why Choose James's Books?</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px;">
<div>
<h3 style="color: #3b82f6; margin-bottom: 15px;"><i class="fas fa-hands-helping"></i> Practical Approach</h3>
<p>Every book comes with complete, working code examples that you can run immediately. No theoretical fluff—just practical, implementable solutions.</p>
</div>
<div>
<h3 style="color: #3b82f6; margin-bottom: 15px;"><i class="fas fa-industry"></i> Industry Experience</h3>
<p>Learn from real-world experience at Zavora.ai. Get insights from actual enterprise AI implementations and business use cases.</p>
</div>
<div>
<h3 style="color: #3b82f6; margin-bottom: 15px;"><i class="fas fa-graduation-cap"></i> Comprehensive Learning</h3>
<p>From beginner-friendly explanations to advanced techniques, each book provides a complete learning journey with progressive complexity.</p>
</div>
<div>
<h3 style="color: #3b82f6; margin-bottom: 15px;"><i class="fas fa-rocket"></i> Latest Technologies</h3>
<p>Stay ahead with coverage of the newest AI frameworks and tools, including cutting-edge developments in AI agents and ML systems.</p>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="section">
<h2><i class="fas fa-quote-left"></i> What Readers Say</h2>
<div class="testimonial">
<p>"James's books are incredibly practical. The LangGraph Blueprint helped me build my first production AI agent in just one week. The code examples are clean and well-documented."</p>
<p style="text-align: right; margin-top: 15px; font-weight: bold;">— Sarah M., AI Developer</p>
</div>
<div class="testimonial">
<p>"Finally, a book that bridges theory and practice! The AutoGen blueprint saved me months of research and experimentation. Highly recommended for anyone serious about AI agents."</p>
<p style="text-align: right; margin-top: 15px; font-weight: bold;">— Mike R., Tech Lead</p>
</div>
<div class="testimonial">
<p>"The Hugging Face Blueprint is comprehensive yet accessible. James explains complex concepts clearly and provides practical examples that actually work in production."</p>
<p style="text-align: right; margin-top: 15px; font-weight: bold;">— Dr. Lisa K., ML Researcher</p>
</div>
</div>
<!-- Call to Action Section -->
<div class="section" style="text-align: center; background: linear-gradient(135deg, #1e293b, #334155); color: white;">
<h2 style="color: white; margin-bottom: 20px;"><i class="fas fa-rocket"></i> Ready to Master AI Development?</h2>
<p style="font-size: 1.2em; margin-bottom: 30px; opacity: 0.9;">
Join thousands of developers who have accelerated their AI journey with James's comprehensive guides
</p>
<div class="cta-buttons">
<a href="https://www.amazon.com/stores/James-Karanja-Maina/author/B0DPL8G1JH" class="btn" style="background: white; color: #1e293b;" target="_blank">
<i class="fab fa-amazon"></i> Shop All Books
</a>
<a href="https://github.com/jkmaina" class="btn secondary" style="background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);" target="_blank">
<i class="fab fa-github"></i> Free Code Samples
</a>
</div>
</div>
<!-- Connect Section -->
<div class="section">
<h2><i class="fas fa-network-wired"></i> Connect with James</h2>
<p style="text-align: center; color: #666; margin-bottom: 30px;">
Stay updated with the latest AI developments and get exclusive insights
</p>
<div class="social-links">
<a href="https://github.com/jkmaina" class="social-link" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.amazon.com/stores/James-Karanja-Maina/author/B0DPL8G1JH" class="social-link" target="_blank">
<i class="fab fa-amazon"></i>
</a>
</div>
</div>
</div>
<script>
// Add smooth scrolling for internal links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add animation on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe all sections
document.querySelectorAll('.section').forEach(section => {
section.style.opacity = '0';
section.style.transform = 'translateY(30px)';
section.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(section);
});
// Track button clicks for analytics (you can integrate with Google Analytics)
document.querySelectorAll('.btn').forEach(button => {
button.addEventListener('click', function() {
// You can add Google Analytics or other tracking here
console.log('Button clicked:', this.textContent.trim(), this.href);
});
});
</script>
</body>
</html>