forked from dsawithaditi/Hacktoberfest2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (80 loc) · 3.83 KB
/
index.html
File metadata and controls
92 lines (80 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest - Developer Profile Card Showcase</title>
<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&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="background-aurora"></div>
<div class="container">
<nav class="navbar">
<h2 class="logo">Profile Showcase</h2>
<div class="nav-links">
<a href="https://github.com/dsawithaditi/Hacktoberfest2025" target="_blank" class="nav-link">
<i class="ri-github-fill"></i> GitHub Repo
</a>
<a href="https://github.com/dsawithaditi/Hacktoberfest2025#how-to-contribute" target="_blank"
class="nav-cta">
Contribute <i class="ri-arrow-right-line"></i>
</a>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<h1>The Contributor Gallery</h1>
<p class="subtitle">A showcase of creative developer profile cards from the open-source community. Built
for Hacktoberfest 2025.</p>
<a href="https://github.com/dsawithaditi/Hacktoberfest2025#how-to-contribute" target="_blank"
class="hero-cta">Start Contributing Today</a>
</div>
</header>
<main>
<div class="search-container">
<i class="ri-search-line"></i>
<input type="text" id="search-input" placeholder="Search by name, bio, or tags (e.g., minimalist)...">
</div>
<div id="contributors-container">
</div>
<div id="sentinel"></div>
<div id="loader"></div>
<p id="no-results" class="no-results-message">No contributors found matching your search.</p>
</main>
</div>
<div id="modal" class="modal-overlay">
<div class="modal-content">
<button id="modal-close" class="modal-close-button">×</button>
<div id="modal-iframe-container"></div>
<div id="modal-info"></div>
</div>
</div>
<div id="preview-modal" class="modal-overlay">
<div class="preview-modal-content">
<div class="preview-modal-header">
<h3>Device Preview</h3>
<div id="device-controls" class="device-controls">
<button data-device="mobile" title="Mobile View"><i class="ri-smartphone-line"></i></button>
<button data-device="tablet" title="Tablet View"><i class="ri-tablet-line"></i></button>
<button data-device="desktop" class="active" title="Desktop View"><i
class="ri-computer-line"></i></button>
</div>
<button id="preview-modal-close" class="modal-close-button">×</button>
</div>
<div id="preview-iframe-container" class="preview-iframe-container view-desktop">
<iframe id="preview-iframe"></iframe>
</div>
<div class="preview-modal-footer">
<a href="#" id="preview-cta" target="_blank" class="hero-cta">
Go to Live Project <i class="ri-external-link-line"></i>
</a>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>