-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
206 lines (183 loc) · 4.89 KB
/
Copy pathindex.html
File metadata and controls
206 lines (183 loc) · 4.89 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta
name="description"
content="Ayoub Odf's GitHub Engineering Dashboard showcase."
>
<title>Ayoub Odf — GitHub Engineering Dashboard</title>
<style>
:root {
color-scheme: dark;
--background: #07101f;
--surface: #0d1930;
--border: #253858;
--text: #f5f8ff;
--muted: #aab8d0;
--blue: #4e82ff;
--green: #b8f24a;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background:
radial-gradient(circle at 20% 0%, #17366f 0, transparent 34rem),
var(--background);
color: var(--text);
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", sans-serif;
}
main {
width: min(1120px, calc(100% - 32px));
margin: 0 auto;
padding: 72px 0;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--green);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.eyebrow::before {
width: 9px;
height: 9px;
border-radius: 50%;
background: currentColor;
content: "";
box-shadow: 0 0 18px currentColor;
}
h1 {
max-width: 800px;
margin: 20px 0;
font-size: clamp(2.8rem, 7vw, 6.6rem);
line-height: 0.94;
letter-spacing: -0.06em;
}
.intro {
max-width: 720px;
color: var(--muted);
font-size: clamp(1.05rem, 2vw, 1.3rem);
line-height: 1.7;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 32px 0 48px;
}
.button {
display: inline-flex;
min-height: 48px;
align-items: center;
justify-content: center;
border: 1px solid var(--border);
border-radius: 14px;
padding: 0 20px;
color: var(--text);
font-weight: 750;
text-decoration: none;
}
.button.primary {
border-color: var(--blue);
background: var(--blue);
}
.preview {
overflow: hidden;
border: 1px solid var(--border);
border-radius: 24px;
background: var(--surface);
box-shadow: 0 28px 90px rgb(0 0 0 / 36%);
}
.preview img {
display: block;
width: 100%;
height: auto;
}
.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 24px;
}
.feature {
border: 1px solid var(--border);
border-radius: 18px;
padding: 24px;
background: rgb(13 25 48 / 76%);
}
.feature strong {
display: block;
margin-bottom: 8px;
font-size: 1.08rem;
}
.feature span {
color: var(--muted);
line-height: 1.55;
}
footer {
margin-top: 48px;
color: var(--muted);
font-size: 0.9rem;
}
@media (max-width: 760px) {
main {
padding: 48px 0;
}
.features {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<main>
<span class="eyebrow">Live REST API portfolio</span>
<h1>GitHub Engineering Dashboard</h1>
<p class="intro">
A focused view of Ayoub Odf's public repositories, technologies,
activity, and engineering projects, powered by the GitHub REST API.
</p>
<div class="actions">
<a class="button primary" href="https://github.com/ayoubodf-dev">
View GitHub profile
</a>
<a
class="button"
href="https://github.com/ayoubodf-dev/github-api-portfolio-showcase"
>
Project overview
</a>
</div>
<div class="preview">
<img
src="docs/images/demo.png"
alt="GitHub Engineering Dashboard presentation"
>
</div>
<section class="features" aria-label="Dashboard highlights">
<article class="feature">
<strong>Repository intelligence</strong>
<span>Featured projects and current public repository metadata.</span>
</article>
<article class="feature">
<strong>Technology overview</strong>
<span>Languages, platforms, and development capabilities.</span>
</article>
<article class="feature">
<strong>Privacy-conscious</strong>
<span>The product source remains private; this is a showcase.</span>
</article>
</section>
<footer>Copyright © 2026 Ayoub Odf. All rights reserved.</footer>
</main>
</body>
</html>