Finishes screenshots in Honeycomb study, adds image to homepage card

This commit is contained in:
Andrew Gioia 2026-05-07 16:48:52 -04:00
parent d191fc57a3
commit 4defc5fd40
Signed by: andrew
GPG Key ID: FC09694A000800C8
7 changed files with 43 additions and 13 deletions

View File

@ -1458,6 +1458,19 @@ body#values {
box-shadow: none;
margin: 0.5rem -0.5rem -0.5rem 0.5rem;
}
&#honeycomb {
background-position: top 10% right -35%;
background-size: 50% auto;
div {
gap: 1rem;
> figure {
max-width: 22.5%;
}
}
}
}
}
@ -1679,15 +1692,6 @@ body#values {
width: 25dvh;
}
}
section#studies {
padding-left: 1.5rem;
padding-right: 1.5rem;
article h2 {
font-size: 2.5rem;
}
}
}
> footer {
@ -1701,6 +1705,21 @@ body#values {
}
}
/* case study list adjustments */
section#studies {
padding-left: 1.5rem;
padding-right: 1.5rem;
article h2 {
font-size: 2.5rem;
}
article#honeycomb {
background-position: top 10% right -5%;
background-size: 35% auto;
}
}
/* single page docs */
body#values main > article {
padding: 10dvh 0 5dvh;
@ -1861,4 +1880,12 @@ body#values {
:root {
--article-grid: 17rem var(--content-width) 7rem;
}
/* case study card adjustments */
section#studies {
article#honeycomb {
background-position: top 10% right -5%;
background-size: 30% auto;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

View File

@ -11,6 +11,7 @@ hero:
html: '<div id="grid"><div id="shapes"><div id="square"></div><div id="circle"></div><div id="rectangle"></div><div id="triangle"></div></div></div>'
list:
more: "My company needed a design system to unify six very different products as one new edtech platform. We did that while managing very different frontends and skill levels, urgent accessibility needs, and no single framework that everyone could share."
img: card.png
color: yellow
facts:
- key: Role

View File

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

@ -11,7 +11,7 @@ hero:
svg: kangaroo-eyes.svg
list:
more: "Wallabyte supports schools and families through critical paperwork, but was woefully unusable. This case study covers how I approached that challenge—from identifying the highest impact issues to shaping a more coherent forms experience."
img: card-legacy.png
img: card.png
color: blue
facts:
- key: Role

View File

@ -31,10 +31,11 @@
{{- $page := . -}}
{{- $image := "" -}}
{{- $color := "" -}}
{{- $cardID := .Slug | default .File.ContentBaseName -}}
{{- with .Params.list.img -}}
{{- $match := $page.Resources.GetMatch . -}}
{{- if not $match -}}
{{- $match = $page.Resources.GetMatch (printf "img/%s" .) -}}
{{- $match = $page.Resources.GetMatch (printf "%s" .) -}}
{{- end -}}
{{- with $match -}}
{{- $image = .RelPermalink -}}
@ -43,7 +44,7 @@
{{- with .Params.list.color -}}
{{- $color = . -}}
{{- end -}}
<article{{ with $color }} color="{{ . }}"{{ end }}{{ with $image }} style="--card-bg: url('{{ . }}');"{{ end }}>
<article id="{{ $cardID }}"{{ with $color }} color="{{ . }}"{{ end }}{{ with $image }} style="--card-bg: url('{{ . }}');"{{ end }}>
<a href="{{ .RelPermalink }}">
<h2>{{ .Title }}</h2>
<p>{{ .Summary }}</p>

View File

@ -12,6 +12,7 @@
{{- with $caption }}
<figcaption>
{{ $caption | markdownify }}
<a href="{{ $url }}" class="tablet-hide">Expand</a>
</figcaption>
{{- end }}
</figure>