-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 3.78 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emad Siddiq | Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
neonPurple: '#ff00ff',
neonBlue: '#00ffff',
neonYellow: '#ffff00',
matrixGreen: '#00ff00',
textColor: '#f0b3ff',
},
fontFamily: {
'code': ['Source Code Pro', 'monospace'],
},
},
},
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet">
<link href="./static/css/styles.css" rel="stylesheet">
</head>
<body class="bg-black min-h-screen text-textColor font-code">
<canvas id="canvas" class="fixed top-0 left-0 w-full h-full -z-10"></canvas>
<div class="container mx-auto px-4 py-8 md:py-16 relative z-10">
<header class="text-center mb-8 md:mb-12">
<h1 class="text-3xl md:text-4xl font-bold mb-4 text-matrixGreen">> Emad_Siddiq</h1>
<img src="./static/assets/pictures/portrait.png" alt="Emad Siddiq" class="rounded-full mx-auto shadow-lg mb-6 w-32 h-32 md:w-48 md:h-48 object-cover border-2 border-neonPurple">
<p class="text-xl md:text-2xl mb-4 md:mb-6 text-matrixGreen hello-world">> Hello_World() {</p>
<nav class="space-x-2 md:space-x-4">
<a href="./static/assets/Emad_Siddiq_resume.pdf" class="text-base md:text-lg font-semibold text-neonBlue hover:text-neonBlue">[Resume]</a>
<a href="https://www.github.com/emad-siddiq" class="text-base md:text-lg font-semibold text-neonBlue hover:text-neonBlue">[GitHub]</a>
<a href="./static/html/blogs/blog.html" class="text-base md:text-lg font-semibold text-neonBlue hover:text-neonBlue">[Blog]</a>
</nav>
<p class="text-xl md:text-2xl mt-4 md:mt-6 text-matrixGreen hello-world">}</p>
</header>
<main class="bg-black bg-opacity-90 rounded-lg shadow-xl p-4 md:p-8 max-w-2xl mx-auto border border-matrixGreen">
<section id="AboutMe" class="space-y-4 matrix-text">
<p class="text-matrixGreen command-prompt">> cat about.txt</p>
<p class="neon-text">I studied Data Science & Political Economy during my undergraduate at UC Berkeley.</p>
<p class="neon-text">Following graduation, I worked as a Software Engineer at <a href="https://www.fin3.tech" class="text-neonPurple hover:text-neonBlue">Fin3 Technologies</a> and was later part of the IAM team at <a href="https://www.flexport.com" class="text-neonPurple hover:text-neonBlue">Flexport Inc.</a></p>
<p class="neon-text">I am currently searching for my next role and would be happy to chat: <a href="mailto:[email protected]" class="text-neonPurple hover:text-neonBlue">[email protected]</a></p>
<p class="text-matrixGreen command-prompt">> _</p>
</section>
</main>
</div>
<div id="animation-instructions" class="fixed bottom-4 right-4 bg-black bg-opacity-80 p-4 rounded-lg border border-neonPurple text-matrixGreen">
<button id="close-instructions" class="absolute top-2 right-2 text-matrixGreen hover:text-neonBlue">×</button>
<p>Switch animations with<br> your keyboard digits:</p>
<ul class="list-disc list-inside">
<li>1 for Vortex</li>
<li>2 for Binary Stream</li>
</ul>
</div>
<script src="./static/js/script.js"></script>
</body>
</html>