Hero/OG: Platform & Infrastructure Engineer, RHEL-led tagline with ▸; fix :8080 links (relative nginx redirects)
build-and-deploy / build (push) Failing after 15m26s
build-and-deploy / build (push) Failing after 15m26s
This commit is contained in:
+13
-14
@@ -15,9 +15,14 @@ import { cvAvailable } from "../lib/assets";
|
||||
|
||||
<p class="hero__positioning">{site.positioning}</p>
|
||||
|
||||
<ul class="hero__tags" aria-label="Core technologies">
|
||||
{site.tagline.map((t) => <li class="mono">{t}</li>)}
|
||||
</ul>
|
||||
<p class="hero__tags mono" aria-label="Core technologies">
|
||||
{site.tagline.map((t, i) => (
|
||||
<Fragment>
|
||||
{i > 0 && <span class="hero__sep" aria-hidden="true">▸</span>}
|
||||
<span>{t}</span>
|
||||
</Fragment>
|
||||
))}
|
||||
</p>
|
||||
|
||||
<div class="hero__cta">
|
||||
<a class="btn btn--primary" href="/#projects">View Projects</a>
|
||||
@@ -65,23 +70,17 @@ import { cvAvailable } from "../lib/assets";
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
.hero__tags {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: var(--space-5) 0 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-3);
|
||||
align-items: center;
|
||||
gap: 0.4rem 0.6rem;
|
||||
font-size: var(--step--1);
|
||||
color: var(--text-dim);
|
||||
line-height: 1.7;
|
||||
}
|
||||
.hero__tags li {
|
||||
position: relative;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.hero__tags li::before {
|
||||
content: "▹";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
.hero__sep {
|
||||
color: var(--accent);
|
||||
}
|
||||
.hero__cta {
|
||||
|
||||
+4
-4
@@ -5,14 +5,14 @@ export const site = {
|
||||
name: "Jonathon Wright",
|
||||
// Short handle used in the mono "logo".
|
||||
handle: "jwright",
|
||||
role: "Infrastructure & DevOps Engineer",
|
||||
role: "Platform & Infrastructure Engineer",
|
||||
location: "Sydney, Australia",
|
||||
// Outcome-led positioning (hero headline).
|
||||
positioning:
|
||||
"Building secure Kubernetes platforms, automated infrastructure fleets and GPU-backed edge systems.",
|
||||
// Supporting capability line under the headline.
|
||||
"Building secure Kubernetes platforms, automated infrastructure fleets, and GPU-backed edge systems.",
|
||||
// Supporting capability line under the headline (rendered with ▸ separators).
|
||||
tagline: [
|
||||
"Talos Linux",
|
||||
"RHEL",
|
||||
"Kubernetes",
|
||||
"GitOps",
|
||||
"Ansible",
|
||||
|
||||
Reference in New Issue
Block a user