-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (146 loc) · 7.25 KB
/
Copy pathindex.html
File metadata and controls
168 lines (146 loc) · 7.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProjektCode | Links</title>
<meta name="description"
content="Connect with ProjektCode - Developer, Designer, Creator. Find all my links in one place.">
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/profilepic.png">
<link rel="apple-touch-icon" href="images/profilepic.png">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://projektcode.github.io/Links-Website/">
<meta property="og:title" content="ProjektCode | Links">
<meta property="og:description" content="Developer, Designer, Creator. Find all my links in one place.">
<meta property="og:image" content="https://projektcode.github.io/Links-Website/images/profilepic.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="ProjektCode | Links">
<meta name="twitter:description" content="Developer, Designer, Creator. Find all my links in one place.">
<meta name="twitter:image" content="https://projektcode.github.io/Links-Website/images/profilepic.png">
<!-- Theme Color -->
<meta name="theme-color" content="#8b5cf6">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap"
rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Subtle Gradient Background -->
<div class="bg-gradient"></div>
<div class="noise-overlay"></div>
<!-- Main Content -->
<main class="container">
<div class="card">
<!-- Profile Header: Avatar + Info Side by Side -->
<div class="profile-header">
<div class="avatar-wrapper">
<img id="profile-pic" class="avatar" src="images/profilepic.png" alt="ProjektCode's Avatar">
</div>
<div class="profile-info">
<div class="name-row">
<h1 id="profile-name" class="name">ProjektCode</h1>
<span class="status-indicator" title="Online">
<span class="status-dot"></span>
</span>
</div>
<p id="profile-bio" class="bio">A beginner programmer, and graphics designer who makes things for
fun.
Currently learning IT, HomeLab, and Docker.</p>
<!-- Inline Music Player -->
<div class="music-player" id="music-player">
<button class="player-toggle" id="player-toggle" title="Play Music">
<i class="fas fa-play" id="player-icon"></i>
</button>
<div class="player-info">
<span class="player-label">Now Playing</span>
<span class="player-song" id="player-song">Click to play</span>
<span class="player-artist" id="player-artist">LISTEN.moe</span>
</div>
</div>
</div>
</div>
<!-- Profile Details (Location & Email) -->
<div id="profile-details" class="profile-details"></div>
<!-- Stats Row -->
<div id="github-stats" class="github-stats"></div>
<!-- Link Buttons -->
<div class="links">
<a href="https://github.com/ProjektCode" target="_blank" rel="noopener" class="link-btn"
id="profile-github">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
<a href="https://www.behance.net/projekt02" target="_blank" rel="noopener" class="link-btn">
<i class="fab fa-behance"></i>
<span>Behance</span>
</a>
<a href="https://www.youtube.com/@ProjektDesigns" target="_blank" rel="noopener" class="link-btn">
<i class="fab fa-youtube"></i>
<span>YouTube</span>
</a>
<a href="https://www.fiverr.com/sopmod" target="_blank" rel="noopener" class="link-btn">
<i class="fas fa-briefcase"></i>
<span>Fiverr</span>
</a>
</div>
<!-- Pinned Repos & Recent Activity Side by Side -->
<div class="github-row">
<section class="github-section" id="pinned-repos-section">
<h2 class="section-title"><i class="fas fa-book"></i> Pinned Repos</h2>
<div id="pinned-repos" class="repos-grid"></div>
</section>
<section class="github-section" id="activity-section">
<h2 class="section-title"><i class="fas fa-clock-rotate-left"></i> Recent Activity</h2>
<div id="recent-activity" class="activity-list"></div>
</section>
</div>
<!-- Footer -->
<footer class="footer">
<p>Made with <span class="heart">♥</span> by <span class="highlight">ProjektCode</span></p>
<p class="stream-credit">
<i class="fas fa-music"></i>
Streaming via <a href="https://listen.moe" target="_blank" rel="noopener">LISTEN.moe</a>
</p>
<p class="ide-credit">
<i class="fas fa-code"></i>
Built with <a href="https://deepmind.google/technologies/gemini/project-antigravity" target="_blank" rel="noopener">Antigravity</a>
</p>
<p class="view-counter">
<i class="fas fa-eye"></i>
<span id="view-count">--</span> views
</p>
</footer>
</div>
</main>
<!-- LISTEN.moe Vorbis Stream (best quality with metadata) -->
<audio id="listen-moe-audio" preload="none">
<source src="https://listen.moe/opus" type="audio/ogg">
<source src="https://listen.moe/stream" type="audio/mpeg">
</audio>
<!-- GSAP Animation Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script type="module" src="js/profile.js"></script>
<script src="js/audio.js"></script>
<script src="js/stats.js"></script>
<script src="js/status.js"></script>
<script src="js/galaxy.js"></script>
<!-- Fix for button focus persistence when opening new tabs -->
<script>
document.querySelectorAll('.link-btn').forEach(btn => {
btn.addEventListener('click', function() {
// Blur the button after click to remove focus state
setTimeout(() => this.blur(), 100);
});
});
</script>
</body>
</html>