From d8218c26dfc8f9eb082f499a1128f4a049a75009 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 19 May 2026 05:23:32 +0000 Subject: [PATCH] Add GoDaily button to ainsleyclark.com hero section Adds a third "Visit GoDaily" CTA button to the hero linking to https://godaily.dev, and adds flex-wrap to .hero-buttons so all three buttons wrap correctly on smaller viewports. https://claude.ai/code/session_01XgBJ1FgoX9hnKCMMYSqevt --- sites/ainsley-clark/layouts/index.html | 6 ++++++ themes/shared/assets/scss/layout/_hero.scss | 1 + 2 files changed, 7 insertions(+) diff --git a/sites/ainsley-clark/layouts/index.html b/sites/ainsley-clark/layouts/index.html index 352a3aa1..8252400c 100644 --- a/sites/ainsley-clark/layouts/index.html +++ b/sites/ainsley-clark/layouts/index.html @@ -40,6 +40,12 @@

"text" "Visit ainsley.dev" "title" "Scroll down to explore" )}} + {{ partial "components/button.html" (dict + "colour" "black" + "link" "https://godaily.dev" + "text" "Visit GoDaily" + "title" "Visit GoDaily - A daily newsletter for Go developers" + )}} diff --git a/themes/shared/assets/scss/layout/_hero.scss b/themes/shared/assets/scss/layout/_hero.scss index 87d93259..28114749 100644 --- a/themes/shared/assets/scss/layout/_hero.scss +++ b/themes/shared/assets/scss/layout/_hero.scss @@ -194,6 +194,7 @@ &-buttons { display: flex; + flex-wrap: wrap; gap: 14px; }