-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
207 lines (180 loc) · 6.66 KB
/
index.html
File metadata and controls
207 lines (180 loc) · 6.66 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
207
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sean Baggett - Developer Tools</title>
<meta name="description" content="CLI tools that solve the annoying problems developers face daily.">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
background: #1e1e1e;
color: #50FA7B;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 800px;
width: 100%;
background: #282828;
border: 3px solid #50FA7B;
padding: 60px 40px;
box-shadow: 0 0 30px rgba(80, 250, 123, 0.3);
}
h1 {
font-size: 3em;
margin-bottom: 10px;
color: #8BE9FD;
}
.tagline {
font-size: 1.3em;
color: #F8F8F2;
margin-bottom: 40px;
}
.links {
display: grid;
gap: 15px;
margin-bottom: 40px;
}
.link-button {
display: flex;
align-items: center;
justify-content: center;
padding: 18px 30px;
background: #44475a;
color: #50FA7B;
text-decoration: none;
font-weight: 600;
font-size: 1.1em;
transition: all 0.3s;
border: 2px solid #50FA7B;
}
.link-button:hover {
background: #50FA7B;
color: #1e1e1e;
transform: translateX(5px);
}
.link-button.sponsor {
background: #44475a;
border-color: #FF79C6;
color: #FF79C6;
}
.link-button.sponsor:hover {
background: #FF79C6;
color: #1e1e1e;
}
.link-button.secondary {
border-color: #FFB86C;
color: #FFB86C;
}
.link-button.secondary:hover {
background: #FFB86C;
color: #1e1e1e;
}
.link-button svg {
margin-right: 10px;
width: 24px;
height: 24px;
}
.stats {
display: flex;
justify-content: space-around;
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid #44475a;
}
.stat {
text-align: center;
}
.stat-number {
font-size: 2em;
font-weight: bold;
color: #BD93F9;
}
.stat-label {
color: #F8F8F2;
font-size: 0.9em;
}
.nav-pages {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
margin-top: 30px;
}
.nav-link {
text-align: center;
padding: 15px;
background: #44475a;
border: 1px solid #8BE9FD;
color: #8BE9FD;
text-decoration: none;
transition: all 0.3s;
}
.nav-link:hover {
background: #8BE9FD;
color: #1e1e1e;
}
@media (max-width: 600px) {
.container {
padding: 40px 30px;
}
h1 {
font-size: 2em;
}
.tagline {
font-size: 1.1em;
}
}
</style>
</head>
<body>
<div class="container">
<h1>$ whoami</h1>
<p class="tagline">> Sean Baggett | CLI Tools Developer</p>
<div class="links">
<a href="https://github.com/strabo231" class="link-button">
<svg viewBox="0 0 16 16" fill="currentColor">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/>
</svg>
GitHub Projects
</a>
<a href="https://github.com/sponsors/strabo231" class="link-button sponsor">
<svg viewBox="0 0 16 16" fill="currentColor">
<path d="m8 14.25.345.666a.75.75 0 0 1-.690 0l-.008-.004-.018-.01a7.152 7.152 0 0 1-.31-.17 22.055 22.055 0 0 1-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.066 22.066 0 0 1-3.744 2.584l-.018.01-.006.003h-.002ZM4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.58 20.58 0 0 0 8 13.393a20.58 20.58 0 0 0 3.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.749.749 0 0 1-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5Z"/>
</svg>
Sponsor My Work
</a>
<a href="https://orcid.org/0009-0003-4402-0265" class="link-button secondary">
<svg viewBox="0 0 16 16" fill="currentColor">
<path d="M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8ZM5.5 11.5h-1v-7h1v7Zm-.5-8a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm6.5 8h-1v-3.5c0-1.38-1.12-2.5-2.5-2.5S5.5 6.62 5.5 8v3.5h-1V8c0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5v3.5Z"/>
</svg>
ORCID Profile
</a>
</div>
<div class="nav-pages">
<a href="projects.html" class="nav-link">Projects</a>
<a href="sponsor.html" class="nav-link">Sponsor</a>
<a href="about.html" class="nav-link">About</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div class="stats">
<div class="stat">
<div class="stat-number">16+</div>
<div class="stat-label">Open Source Tools</div>
</div>
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Free for Personal Use</div>
</div>
</div>
</div>
</body>
</html>