-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (106 loc) · 3.2 KB
/
index.html
File metadata and controls
116 lines (106 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>John Schoonover — Personal Site Fallback</title>
<style>
:root {
color-scheme: light dark;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
}
body {
margin: 0;
display: grid;
min-height: 100vh;
place-items: center;
padding: 2rem;
background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent),
radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.12), transparent),
radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.15), transparent),
#0f172a;
}
main {
max-width: 40rem;
width: 100%;
border-radius: 1.5rem;
border: 1px solid rgba(148, 163, 184, 0.3);
background: rgba(15, 23, 42, 0.85);
backdrop-filter: blur(16px);
padding: 2.5rem;
box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
}
h1 {
font-size: clamp(1.8rem, 2.4vw, 2.4rem);
margin-bottom: 0.75rem;
}
p {
line-height: 1.6;
margin: 0 0 1rem;
}
a {
color: #38bdf8;
font-weight: 600;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
ul {
list-style: none;
padding: 0;
margin: 1.5rem 0 0;
display: grid;
gap: 0.75rem;
}
li {
display: flex;
align-items: center;
gap: 0.75rem;
}
li span {
display: inline-flex;
width: 0.75rem;
height: 0.75rem;
border-radius: 999px;
background: #38bdf8;
}
small {
display: block;
margin-top: 1.5rem;
font-size: 0.75rem;
color: rgba(148, 163, 184, 0.8);
}
</style>
</head>
<body>
<main>
<h1>theschoonover.net is built in Astro</h1>
<p>
You're seeing the development fallback index. The production build lives in
<code>apps/site</code> and publishes a fully featured experience with case studies, writing, and contact workflows.
</p>
<p>
While the deployment runs, you can still reach John and explore ongoing work below.
</p>
<ul>
<li>
<span aria-hidden="true"></span>
<a href="https://github.com/johnmschoonover" rel="me noopener noreferrer" target="_blank">GitHub — open-source prototypes & lab notes</a>
</li>
<li>
<span aria-hidden="true"></span>
<a href="/apps/site/contact">Contact — SIEM and platform engagements</a>
</li>
<li>
<span aria-hidden="true"></span>
<a href="https://www.linkedin.com/in/johnmschoonover/" rel="noopener noreferrer" target="_blank">LinkedIn — professional updates</a>
</li>
</ul>
<small>Prefer the full experience? Run <code>pnpm --filter site dev</code> and visit <code>http://localhost:4321</code>.</small>
</main>
</body>
</html>