Skip to content

Commit f7fd7cf

Browse files
committed
Remove inert homepage series section
1 parent 777bd4d commit f7fd7cf

4 files changed

Lines changed: 35 additions & 51 deletions

File tree

docs/uiux-20-round-log.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
This log tracks the repeated screenshot-led UI/UX improvement rounds for Joey's Notes.
44

5+
## Round 54 - 2026-07-10 - Homepage Series Simplification
6+
7+
Evidence:
8+
9+
- Browser review: homepage at `390x844`, between selected photographs and the about section.
10+
- Screenshot: `/tmp/oiahoon-uiux-rounds/round54-before-home-series-mobile.png`.
11+
- Baseline measurement: the three `Recent series` rows contained zero links and were not generated from current content.
12+
13+
Findings:
14+
15+
- The rows look like discovery controls but cannot be opened or filtered.
16+
- Static series names add a full mobile screen of content without advancing the main photography or notes journeys.
17+
- Selected photographs already provide the stronger, real entry into visual work.
18+
19+
Changes:
20+
21+
- Removed the inert `Recent series` section and its unused styles.
22+
- Connected selected photography directly to the concise author introduction.
23+
- Kept real navigation and content sections unchanged.
24+
- Bumped the app version to `0.0.55`.
25+
26+
Validation plan:
27+
28+
Results:
29+
30+
- Browser verification: no inert series grid remains and selected photography flows directly into the author section.
31+
- Browser verification: the homepage stays within `390px` and all remaining sections have working destinations or real content.
32+
- `npm run check:content-health` passed.
33+
- `npm run build` passed.
34+
- `git diff --check` passed.
35+
- `npm run check:security` reports the known `4 vulnerabilities (3 low, 1 moderate)`; the full fix requires a breaking Astro upgrade.
36+
537
## Round 53 - 2026-07-10 - Homepage Content-First Opening
638

739
Evidence:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "joey-notes-astro",
33
"type": "module",
4-
"version": "0.0.54",
4+
"version": "0.0.55",
55
"scripts": {
66
"dev": "astro dev",
77
"build": "astro build",

src/pages/index.astro

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -89,29 +89,6 @@ function photoMeta(photo: typeof photographs[number]) {
8989
</div>
9090
</section>
9191

92-
<section class="home-section">
93-
<div class="shell">
94-
<div class="home-section__head">
95-
<h2>Recent series</h2>
96-
</div>
97-
98-
<div class="series-grid">
99-
<article>
100-
<p class="series-grid__title">Street Motion</p>
101-
<p>Taxis · roads · 2024</p>
102-
</article>
103-
<article>
104-
<p class="series-grid__title">Cafe Windows</p>
105-
<p>Glass · handwritten signs</p>
106-
</article>
107-
<article>
108-
<p class="series-grid__title">Quiet Canopies</p>
109-
<p>Trees · harbour haze</p>
110-
</article>
111-
</div>
112-
</div>
113-
</section>
114-
11592
<section class="home-section">
11693
<div class="shell home-about">
11794
<h2>Joey Huang</h2>
@@ -293,7 +270,6 @@ function photoMeta(photo: typeof photographs[number]) {
293270
}
294271

295272
.selected-card p,
296-
.series-grid p,
297273
.home-about p,
298274
.legacy-row p {
299275
color: var(--muted);
@@ -304,27 +280,6 @@ function photoMeta(photo: typeof photographs[number]) {
304280
font-size: 0.92rem;
305281
}
306282

307-
.series-grid {
308-
display: grid;
309-
gap: 1rem;
310-
margin-top: 2rem;
311-
}
312-
313-
.series-grid article {
314-
border-top: 1px solid var(--line);
315-
padding-top: 1rem;
316-
}
317-
318-
.series-grid__title {
319-
margin: 0;
320-
color: var(--text) !important;
321-
font-weight: 700;
322-
}
323-
324-
.series-grid p:last-child {
325-
margin: 0.35rem 0 0;
326-
}
327-
328283
.home-about {
329284
display: grid;
330285
gap: 1rem;
@@ -382,9 +337,6 @@ function photoMeta(photo: typeof photographs[number]) {
382337
grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
383338
}
384339

385-
.series-grid {
386-
grid-template-columns: repeat(3, minmax(0, 1fr));
387-
}
388340
}
389341

390342
@media (max-width: 640px) {

0 commit comments

Comments
 (0)