-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (134 loc) · 6.29 KB
/
index.html
File metadata and controls
148 lines (134 loc) · 6.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Profile - Projects</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="css/style.css">
</head>
<body>
<!-- Loading Screen -->
<div id="loadingScreen" class="loading-screen">
<canvas id="loadingMatrix" class="loading-matrix"></canvas>
<div class="loading-content">
<div class="loading-logo">
<div class="matrix-text">INITIALIZING...</div>
<div class="loading-bar">
<div class="loading-progress"></div>
</div>
<div class="loading-percentage">0%</div>
</div>
</div>
</div>
<!-- Matrix Rain Background -->
<canvas id="matrixRain" class="matrix-rain"></canvas>
<!-- Main Tech Card -->
<div class="tech-card">
<!-- Profile Content -->
<div class="flex flex-col items-center">
<!-- Profile Image -->
<div class="relative mb-6">
<img src="img/profile.png"
alt="Profile Picture"
class="profile-img w-28 h-28 sm:w-36 sm:h-36 rounded-full object-cover">
<div class="absolute -bottom-2 -right-2 bg-cyan-500 rounded-full p-2">
<i class="fas fa-code text-white text-sm"></i>
</div>
</div>
<!-- Name and Title -->
<h1 class="text-2xl sm:text-3xl font-bold text-white mb-2">Yulian Safarudin</h1>
<h2 class="text-lg sm:text-xl text-cyan-400 mb-4">Full Stack Developer</h2>
<!-- Bio -->
<div class="text-center max-w-2xl mx-auto mb-6">
<p class="text-gray-300 text-sm sm:text-base">
Passionate about building innovative web applications with cutting-edge technologies.
Specializing in React, Node.js, and cloud architecture.
</p>
</div>
<!-- Tech Stack -->
<div class="flex flex-wrap justify-center gap-2 mb-6">
<span class="px-2 py-1 bg-slate-800 rounded-full text-xs sm:text-sm text-cyan-400">PHP</span>
<span class="px-2 py-1 bg-slate-800 rounded-full text-xs sm:text-sm text-cyan-400">CodeIgniter</span>
<span class="px-2 py-1 bg-slate-800 rounded-full text-xs sm:text-sm text-cyan-400">Laravel</span>
<span class="px-2 py-1 bg-slate-800 rounded-full text-xs sm:text-sm text-cyan-400">MySQL</span>
</div>
<!-- Call to Action -->
<div class="flex space-x-3 mb-8">
<a href="https://ianoit.github.io/blog" class="px-4 py-1 sm:px-6 sm:py-2 bg-cyan-600 hover:bg-cyan-700 text-white rounded-md transition duration-300 text-sm sm:text-base">
Blog
</a>
<button id="viewProjectsBtn" class="px-4 py-1 sm:px-6 sm:py-2 border border-cyan-400 hover:bg-cyan-900/30 text-cyan-400 rounded-md transition duration-300 text-sm sm:text-base">
View Projects
</button>
</div>
<!-- Social Icons at the bottom -->
<div class="flex space-x-6 border-t border-slate-700 pt-6 w-full justify-center">
<a href="#" class="social-icon text-gray-400 hover:text-white text-xl">
<i class="fab fa-github"></i>
</a>
<a href="#" class="social-icon text-gray-400 hover:text-white text-xl">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="social-icon text-gray-400 hover:text-white text-xl">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<!-- Projects Modal -->
<div id="projectsModal" class="projects-modal">
<div class="max-w-6xl mx-auto">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-cyan-400">My Projects</h2>
<div id="closeProjectsModal" class="close-btn">
<i class="fas fa-times"></i>
</div>
</div>
<div id="projectsGrid" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Projects will be loaded dynamically from projects.json -->
</div>
</div>
</div>
<!-- Project Detail Modal -->
<div id="projectDetailModal" class="project-detail-modal">
<div class="max-w-4xl mx-auto">
<div id="closeProjectDetail" class="close-btn">
<i class="fas fa-times"></i>
</div>
<!-- Project content will be dynamically inserted here -->
<div id="projectDetailContent"></div>
</div>
</div>
<!-- Lightbox for image viewing -->
<div id="lightbox" class="lightbox">
<div class="lightbox-content">
<div id="lightboxClose" class="lightbox-close">
<i class="fas fa-times"></i>
</div>
<div class="lightbox-nav">
<div id="lightboxPrev" class="lightbox-prev">
<i class="fas fa-chevron-left"></i>
</div>
<div id="lightboxNext" class="lightbox-next">
<i class="fas fa-chevron-right"></i>
</div>
</div>
<img id="lightboxImg" class="lightbox-img" src="" alt="">
<div id="lightboxCaption" class="lightbox-caption"></div>
</div>
</div>
<!-- Image Modal Popup for Project Images -->
<div id="imageModal" class="image-modal">
<div class="image-modal-content">
<div id="imageModalClose" class="image-modal-close">
<i class="fas fa-times"></i>
</div>
<img id="imageModalImg" class="image-modal-img" src="" alt="">
<div id="imageModalCaption" class="image-modal-caption"></div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>