-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
597 lines (554 loc) · 30.6 KB
/
index.html
File metadata and controls
597 lines (554 loc) · 30.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
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Daniele Di Minica's personal web site">
<title>Daniele Di Minica | Product Manager & Tech Enthusiast</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- Privacy-friendly analytics by Plausible -->
<script async src="https://plausible.danielediminica.it:24575/js/pa-OLohS4YQWNEemQsfx34J2.js"></script>
<script>
window.plausible = window.plausible || function () { (plausible.q = plausible.q || []).push(arguments) }, plausible.init = plausible.init || function (i) { plausible.o = i || {} };
plausible.init()
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap'); */
body {
font-family: 'Inter', sans-serif;
font-display: optional;
background-color: #0f172a;
color: #f1f5f9;
overflow-x: hidden;
}
.glass {
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-link {
position: relative;
transition: color 0.3s;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: #38bdf8;
transition: width 0.3s;
}
.nav-link:hover::after {
width: 100%;
}
.gradient-text {
background: linear-gradient(to right, #38bdf8, #818cf8);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h3>a {
text-decoration: underline;
text-decoration-color: #818cf8;
text-decoration-style: dashed;
}
p>a {
text-decoration: underline;
text-decoration-color: #818cf8;
text-decoration-style: dashed;
}
.contacts {
text-decoration: underline;
text-decoration-color: #818cf8;
text-decoration-style: dashed;
}
</style>
</head>
<body>
<div id="cursor-glow"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 glass py-4 px-6 md:px-12 flex justify-between items-center">
<div class="text-xl font-bold tracking-tighter">
<span class="gradient-text">D</span>DM
</div>
<!-- Mobile Menu Button -->
<button type="button" id="menu-btn" class="md:hidden text-2xl focus:outline-none" aria-label="Toggle Menu">
<i class="fas fa-bars"></i>
</button>
<!-- Desktop Menu -->
<ul class="hidden md:flex space-x-8 font-medium">
<li><a href="#home" class="plausible-event-name=Home nav-link">Home</a></li>
<li><a href="#about" class="plausible-event-name=About nav-link">About</a></li>
<li><a href="#experience" class="plausible-event-name=Experience nav-link">Experience</a></li>
<li><a href="#articles" class="plausible-event-name=Articles nav-link">Articles</a></li>
<li><a href="#skills" class="plausible-event-name=Skills nav-link">Skills</a></li>
<li><a href="#certifications" class="plausible-event-name=Certifications nav-link">Certifications</a></li>
<li><a href="#links" class="plausible-event-name=Links nav-link">Links</a></li>
<li><a href="#contact" class="plausible-event-name=Contact nav-link">Contact</a></li>
</ul>
<!-- Mobile Menu Dropdown -->
<div id="mobile-menu"
class="hidden absolute top-full left-0 w-full glass p-6 flex flex-col space-y-4 md:hidden text-center border-t border-slate-700">
<a href="#home" class="plausible-event-name=Home mobile-nav-link">Home</a>
<a href="#about" class="plausible-event-name=About mobile-nav-link">About</a>
<a href="#experience" class="plausible-event-name=Experience mobile-nav-link">Experience</a>
<a href="#articles" class="plausible-event-name=Articles mobile-nav-link">Articles</a>
<a href="#skills" class="plausible-event-name=Skills mobile-nav-link">Skills</a>
<a href="#links" class="plausible-event-name=Links mobile-nav-link">Links</a>
<a href="#contact" class="plausible-event-name=Contact mobile-nav-link">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center px-6 relative overflow-hidden">
<div class="max-w-6xl text-center z-10">
<!-- Increased font size for Name -->
<h1 class="text-6xl md:text-9xl font-extrabold mb-4 tracking-tight ">
Daniele <span class="gradient-text">Di Minica</span>
</h1>
<!-- Reduced font size for Professional Tagline -->
<h2 class="text-2xl md:text-4xl font-semibold text-slate-300 mb-8 ">
Product Manager. Curious Mind.
</h2>
<p class="text-lg md:text-xl text-slate-300 mb-10 max-w-2xl mx-auto leading-relaxed">
Navigating Tech and Life through AI, Automation, and Innovation.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 ">
<a href="#experience"
class="plausible-event-name=Journey px-10 py-4 bg-sky-500 hover:bg-sky-600 rounded-full font-bold transition-all transform hover:scale-105 shadow-lg shadow-sky-500/20">My
Journey</a>
<a href="#contact"
class="plausible-event-name=GetInTouch px-10 py-4 border border-slate-700 hover:border-sky-400 rounded-full font-bold transition-all">Get
in Touch</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-24 px-6 md:px-12 bg-slate-900/50">
<div class="max-w-6xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div class="">
<!-- Placeholder for Profile Picture -->
<div
class="w-full aspect-square glass rounded-2xl flex items-center justify-center border-2 border-dashed border-slate-700 overflow-hidden group">
<img alt="profile picture" src="images/profile_pic_small.webp" class="w-full">
</div>
</div>
<div class="">
<h2 class="text-3xl font-bold mb-6 gradient-text">About Me</h2>
<p class="text-lg mb-6">
Hello, I'm Daniele. I'm the Product Manager for AI-based Automated Diagnostics at the <a href="https://www.anritsu.com/en-gb/service-assurance"
target="_blank">market leader Company in Telecom Service Assurance</a>.
I'm passionate about solving complex problems, building great products, and connecting with people.
</p>
<p class="text-lg mb-6">
With over 20 years of experience in security, intelligence, and telecommunications, I focus on the
intersection of data and user experience.
</p>
<p class="text-lg mb-6">
I'm passionate about running, cycling, learning new languages, hacking and, above all, spending time
with my family.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="p-4 glass rounded-xl">
<span class="block text-sky-400 font-bold text-2xl">10+ years</span>
<span class="text-sm text-slate-400">Product Management</span>
</div>
<div class="p-4 glass rounded-xl">
<span class="block text-sky-400 font-bold text-2xl">5+ years</span>
<span class="text-sm text-slate-400">Telco Market</span>
</div>
<div class="p-4 glass rounded-xl">
<span class="block text-sky-400 font-bold text-2xl">9+ years</span>
<span class="text-sm text-slate-400">Intelligence and Security market</span>
</div>
<div class="p-4 glass rounded-xl">
<span class="block text-sky-400 font-bold text-2xl">20+ years</span>
<span class="text-sm text-slate-400">Software Engineering</span>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-24 px-6 md:px-12 max-w-6xl mx-auto">
<h2 class="text-3xl font-bold mb-12 text-center ">My professional journey</h2>
<div class="space-y-8">
<!-- Experience Item 1 -->
<div
class=" glass p-8 rounded-2xl flex flex-col md:flex-row gap-6 hover:border-sky-500/50 transition-colors">
<div class="md:w-1/4">
<span class="text-sky-400 font-bold">Currently</span>
<h3 class="text-xl font-bold mt-1"><a href="https://www.anritsu.com/en-gb/service-assurance"
target="_blank">Product Manager</a></h3>
<p class="text-slate-400">Telco Service Assurance</p>
</div>
<div class="md:w-3/4">
<p class="">
<b>Senior Product Manager | AI Diagnostics & API Automation</b> -
Leading lead the global AI Diagnostics and API portfolio, driving strategy and GTM for Tier-1
operators across four continents. Delivered double-digit improvements in root cause analysis
through advanced AI integration. Additionally, serving as Security Champion for SSDLC compliance
and lead SAFe Agile transformation to streamline enterprise-wide delivery and time-to-market.
</p>
</div>
</div>
<!-- Experience Item 2 -->
<div
class=" glass p-8 rounded-2xl flex flex-col md:flex-row gap-6 hover:border-sky-500/50 transition-colors">
<div class="md:w-1/4">
<span class="text-slate-500 font-bold">Past Role</span>
<h3 class="text-xl font-bold mt-1"><a href="https://www.ips-intelligence.com/en/solutions"
target="_blank">Product Manager</a></h3>
<p class="text-slate-400">Security & Intelligence</p>
</div>
<div class="md:w-3/4">
<p class="">
<b>Product Manager</b> of a deep learning-based Fusion Center platform designed for real-time
situational
awareness. Integrating location data, radar inputs, and geo-tagged multimedia from hundreds of
thousands of
sources to deliver a comprehensive, unified view of regional security status, supporting
critical
operations in defense and public safety domains.<br>
<b>Product Manager</b> of the leader Law Enforcement Monitoring Facility product, serving 20+
countries worldwide
in their mission to elevate the public safety to a higher standard.
</p>
</div>
</div>
<!-- Experience Item 3 -->
<div
class=" glass p-8 rounded-2xl flex flex-col md:flex-row gap-6 hover:border-sky-500/50 transition-colors">
<div class="md:w-1/4">
<span class="text-slate-500 font-bold">Previous experiences</span>
<h3 class="text-xl font-bold mt-1"><a href="https://www.ips-intelligence.com/en/lawful-interception"
target="_blank">Engineering Team Manager</a></h3>
<p class="text-slate-400">Enterprise Development</p>
</div>
<div class="md:w-3/4">
<p class="">
<b>Engineering Manager</b> of the company’s cross-functional AI team, leading the development
and deployment
of machine learning solutions across multiple business areas.<br>
<b>Engineering Team Manager</b> for the successful implementation of an Avaya Aura Contact
Center recording system,
enabling secure, high-quality voice capture and compliance monitoring.
Led the development of a script analysis solution aimed at enhancing Contact Center performance
and customer
experience through intelligent quality assessment and optimization.
</p>
</div>
</div>
</div>
</section>
<!-- Articles Section -->
<section id="articles" class="py-24 px-6 md:px-12 max-w-6xl mx-auto">
<h2 class="text-3xl font-bold mb-12 text-center ">Articles</h2>
<div class="space-y-8">
<!-- Experience Item 1 -->
<div
class=" glass p-8 rounded-2xl flex flex-col md:flex-row gap-6 hover:border-sky-500/50 transition-colors">
<div class="md:w-1/4">
<span class="text-sky-400 font-bold">Aug 8, 2023</span>
<h3 class="text-xl font-bold mt-1">
<a target="_blank"
href="https://medium.com/anritsu-service-assurance/leveraging-data-for-network-and-service-optimization-the-power-of-pcap-exports-and-ai-models-927edd482818">
Leveraging Data for Network and Service Optimization: The
Power of PCAP Exports and AI Models
</a>
</h3>
<p class="text-slate-400">Medium <i class="fa-brands fa-medium"></i></p>
</div>
<div class="md:w-3/4">
<p class="">
How telecommunications operators are evolving by transforming PCAP data from a simple
troubleshooting tool
into a foundational asset for artificial intelligence. By feeding these granular packet captures
into
machine learning models, providers can move beyond reactive maintenance and instead proactively
optimize
their infrastructure. This integration allows for the real-time detection of anomalies and the
automated
management of traffic spikes, ultimately leading to lower operational costs and a significantly
more
reliable experience for the end user.
</p>
</div>
</div>
</div>
</section>
<!-- Skills/Interests -->
<section id="skills" class="py-24 px-6 md:px-12 bg-slate-900/50">
<div class="max-w-6xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-12 ">Skills & Expertise</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 ">
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-project-diagram text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Product Strategy</h1>
<small>Strategic Roadmapping and multi-million € portfolio leadership</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-network-wired text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Telco Market</h1>
<small>Deep expertise in Service Assurance for NOC and Engineering teams.</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-globe text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Intelligence Market</h1>
<small>Deep expertise Intelligence and Lawful Interception markets.</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-brain text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Artificial Intelligence</h1>
<small>Multiple certifications, hands-on experiences, production delivery from 2019</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-microphone text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Communication</h1>
<small>Presentation and communication skills, public speaking at events.</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-user text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Deep user empathy</h1>
<small>Understanding the customers' "pain points" rather than just the features they ask for.</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-user-group text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Team leadership</h1>
<small>Managed teams with up to 20 senior engineers and project managers.</small>
</div>
<div class="p-6 glass rounded-2xl hover:bg-sky-500/10 transition-all">
<i class="fas fa-code text-3xl text-sky-400 mb-4"></i>
<h1 class="font-bold">Tech</h1>
<small>Always up-to-date on latest tech and trends.</small>
</div>
</div>
</div>
</section>
<!-- Certificates Placeholder -->
<section id="certifications" class="py-24 px-6 md:px-12 max-w-6xl mx-auto">
<h2 class="text-3xl font-bold mb-8 text-center ">Certifications</h2>
<div class="grid md:grid-cols-3 gap-6 ">
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Deep Learning Specialization
<p>
<a href="https://www.coursera.org/account/accomplishments/specialization/HE3ELV3ZNTJS"
target="_blank">
<img alt="certificate" src="images/cert12_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Sequence Models Course
<p>
<a href="https://www.coursera.org/account/accomplishments/verify/4TP6YLYSNMNT" target="_blank">
<img alt="certificate" src="images/cert11_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Structuring Machine Learning Projects
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/52ZNC2VR8F86" target="_blank">
<img alt="certificate" src="images/cert10_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Improving Deep Neural Networks
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/FMGD6RASYXYK" target="_blank">
<img alt="certificate" src="images/cert9_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Neural Networks and Deep Learning
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/49LFJ2G5CGYV" target="_blank">
<img alt="certificate" src="images/cert8_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Convolutional Neural Networks
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/A9R8G37JL28M" target="_blank">
<img alt="certificate" src="images/cert7_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Functional Programming in Scala
<p>
<a href="https://www.coursera.org/account/accomplishments/specialization/ABQDV7MBXEG7"
target="_blank">
<img alt="certificate" src="images/cert6_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Big Data Analysis with Scala and Spark
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/7K8RHFAUU4NZ" target="_blank">
<img alt="certificate" src="images/cert5_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Parallel Programming
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/TPLFUTPT6R5B" target="_blank">
<img alt="certificate" src="images/cert4_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Functional Program Design in Scala
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/JB7565KXDU2X" target="_blank">
<img alt="certificate" src="images/cert3_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Functional Programming Principles in Scala
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/YEA348DTAJ9T" target="_blank">
<img alt="certificate" src="images/cert2_small.webp">
</a>
</p>
</div>
<div class="glass p-8 rounded-2xl border-2 border-dashed border-slate-700 text-center ">
Machine Learning
<p>
<a href="https://www.coursera.org/account/accomplishments/certificate/HEGX52WRFYVC" target="_blank">
<img alt="certificate" src="images/cert1_small.webp">
</a>
</p>
</div>
</div>
</section>
<!-- Links -->
<section id="links" class="py-24 px-6 md:px-12 max-w-6xl mx-auto">
<h2 class="text-3xl font-bold mb-8 text-center ">Interesting sources I follow</h2>
<div class="grid md:grid-cols-4 gap-6 ">
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.alexandercowan.com/" target="_blank">Alex Cowan</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://news.ycombinator.com/" target="_blank">Hacker News</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://dev.to//" target="_blank">dev.to</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://towardsdatascience.com/" target="_blank">Towards Data Science</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://machinelearningmastery.com/blog/" target="_blank">Machine learning mastery</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.fast.ai/" target="_blank">Fast AI</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://nonzerosum.games/" target="_blank">Non zero sum games</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://charlesmartin14.wordpress.com/" target="_blank">calculated</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="http://radar.oreilly.com/" target="_blank">O'Reilly Radar</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.thefastmode.com/" target="_blank">The Fast Mode</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="http://www.creativebloq.com/" target="_blank">Creative Bloq</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="http://arstechnica.com/" target="_blank">Ars Technica</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.wired.com/" target="_blank">Wired</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://theintercept.com/" target="_blank">The Intercept</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.economist.com/" target="_blank">The Economist</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://citizenlab.ca/" target="_blank">The Citizen Lab</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.politico.com/" target="_blank">Politico</a></p>
</div>
<div class="glass p-4 rounded-2xl border-2 border-slate-700 text-center ">
<p><a href="https://www.getflack.com/" target="_blank">Flack</a></p>
</div>
...and many others.
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-24 px-6 md:px-12 bg-sky-500/10">
<div class="max-w-4xl mx-auto text-center ">
<h2 class="text-4xl font-bold mb-6">Let's Connect</h2>
<p class="text-xl text-slate-400 mb-10">
I'm always open to discussing tech, product management, or the latest in Telco.
</p>
<div class="flex justify-center space-x-8 mb-12">
<a target="_blank" href="https://it.linkedin.com/in/danielediminica"
class="plausible-event-name=Linkedin text-2xl hover:text-sky-400 transition-colors contacts">LinkedIn <i
class="fab fa-linkedin"></i></a>
<a href="mailto:contact@danielediminica.it"
class="plausible-event-name=Email text-2xl hover:text-sky-400 transition-colors contacts">Mail <i
class="fas fa-envelope"></i></a>
<a target="_blank" href="https://medium.com/@daniele.diminica_55640"
class="plausible-event-name=Medium text-2xl hover:text-sky-400 transition-colors contacts">Medium <i
class="fa-brands fa-medium"></i></a>
</div>
<div class="glass p-8 rounded-3xl inline-block">
<p class="text-sm text-slate-500 uppercase tracking-widest font-bold">Available for</p>
<p class="text-lg">Collaborations • Consulting • Product/Tech Strategy</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6 text-center border-t border-slate-800 text-slate-500 text-sm">
<p>© 2026 Daniele Di Minica.</p>
</footer>
<script>
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
const icon = menuBtn.querySelector('i');
icon.classList.toggle('fa-bars');
icon.classList.toggle('fa-times');
});
document.querySelectorAll('.mobile-nav-link').forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
menuBtn.querySelector('i').classList.replace('fa-times', 'fa-bars');
});
});
window.addEventListener('scroll', () => {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('.nav-link');
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
if (pageYOffset >= sectionTop - 100) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.style.color = link.getAttribute('href') === `#${current}` ? '#38bdf8' : '';
});
});
</script>
</body>
</html>