Skip to content

Commit 8cbdd73

Browse files
committed
fix: v1.0.1 — InfraLens landing width, footer alignment, hero GitHub link
- align InfraLens's "What it checks" section to the same max-w-4xl content column as the rest of the page (was max-w-6xl, the only outlier) - fix a footer column vertical-alignment bug — bare <li> elements picked up an inherited line-height "strut" that text-only and icon+text links resolved against differently; a previously known, never-fixed regression from the branding pass, now verified at 0px offset between columns - move the homepage hero's GitHub link to its own line below the CTA buttons, matching InfraLens's secondary-actions treatment, and simplify its label to "GitHub" (it links to a profile, not a specific repo)
1 parent 0036709 commit 8cbdd73

5 files changed

Lines changed: 38 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ InfraLens's history as a standalone product (2026-01-06 to 2026-08-10) is
99
frozen in [`docs/infralens/CHANGELOG.md`](docs/infralens/CHANGELOG.md).
1010
InfraLens changes since its native migration are recorded here.
1111

12+
## [1.0.1] — 2026-08-13
13+
14+
### Fixed
15+
16+
- **InfraLens's "What it checks" section overflowed the page's content
17+
width** — used `max-w-6xl` while every other section/page on InfraLens
18+
(hero, example report, open-source, CTA, `/compare`, `/docs`, `/privacy`)
19+
uses `max-w-4xl`; aligned to match.
20+
- **Footer column alignment** — bare `<li>` elements picked up an inherited
21+
line-height "strut", which text-only links and icon+text links resolved
22+
against differently (baseline alignment), offsetting the "Liens" column
23+
~2.5px closer to its heading than "Site"/"Explorer". A previously known,
24+
never-fixed regression from the branding pass — `<li>` elements now use
25+
`display: flex`, removing the dependency on inherited line-height entirely
26+
(verified: 0px offset between columns).
27+
- **Homepage hero's GitHub link** looked mismatched next to the two CTA
28+
buttons on mobile, especially when it wrapped. Moved to its own line below
29+
the buttons, matching InfraLens's hero secondary-actions treatment
30+
(`text-sm`, larger icon); label simplified to "GitHub" — it links to a
31+
profile, not a specific repository, so a more descriptive label would
32+
have overclaimed.
33+
1234
## [1.0.0] — 2026-08-13
1335

1436
Closes the 0.x "building it" era (portfolio redesign, InfraLens native

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "randy-code",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"packageManager": "pnpm@10.7.0",
66
"scripts": {

src/components/hero-text.tsx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,17 @@ export function HeroText() {
3434
>
3535
Me contacter
3636
</Link>
37-
<a
38-
href="https://github.com/Randy-R-code"
39-
target="_blank"
40-
rel="noopener noreferrer"
41-
className="inline-flex items-center gap-1.5 text-xs text-zinc-400 transition-colors hover:text-zinc-300"
42-
>
43-
<GitHubIcon size={11} />
44-
GitHub
45-
</a>
4637
</div>
38+
39+
<a
40+
href="https://github.com/Randy-R-code"
41+
target="_blank"
42+
rel="noopener noreferrer"
43+
className="mt-4 inline-flex items-center gap-1.5 text-sm text-zinc-400 transition-colors hover:text-zinc-300"
44+
>
45+
<GitHubIcon size={16} />
46+
GitHub
47+
</a>
4748
</header>
4849
);
4950
}

src/components/layout/site-footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function SiteFooter() {
4444
</p>
4545
<ul className="flex flex-col gap-2">
4646
{exploreNav.map((item) => (
47-
<li key={item.href}>
47+
<li key={item.href} className="flex">
4848
<Link
4949
href={item.href}
5050
className="inline-flex items-center text-xs font-medium text-zinc-400 transition-colors hover:text-white"
@@ -62,7 +62,7 @@ export function SiteFooter() {
6262
</p>
6363
<ul className="flex flex-col gap-2">
6464
{siteNav.map((item) => (
65-
<li key={item.href}>
65+
<li key={item.href} className="flex">
6666
<Link
6767
href={item.href}
6868
className="inline-flex items-center text-xs font-medium text-zinc-400 transition-colors hover:text-white"
@@ -79,7 +79,7 @@ export function SiteFooter() {
7979
Liens
8080
</p>
8181
<ul className="flex flex-col gap-2">
82-
<li>
82+
<li className="flex">
8383
<a
8484
href="https://github.com/Randy-R-code"
8585
target="_blank"
@@ -90,7 +90,7 @@ export function SiteFooter() {
9090
GitHub
9191
</a>
9292
</li>
93-
<li>
93+
<li className="flex">
9494
<a
9595
href="https://liflow.app"
9696
target="_blank"

src/infralens/components/landing/what-it-checks.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const categories = [
4949
export function WhatItChecks() {
5050
return (
5151
<section className="py-8 md:py-12 lg:py-16 px-6 sm:px-8 md:px-12 bg-background/50">
52-
<div className="max-w-6xl mx-auto space-y-8 md:space-y-10 lg:space-y-12">
52+
<div className="max-w-4xl mx-auto space-y-8 md:space-y-10 lg:space-y-12">
5353
<div className="text-center space-y-2">
5454
<h2 className="text-2xl sm:text-3xl font-bold tracking-tight">
5555
What it checks

0 commit comments

Comments
 (0)