Skip to content

Commit 9f1ec5f

Browse files
benbalterCopilot
andcommitted
Update tagline to 'Engineering leadership, open source, and showing your work'
'Technology leadership' softened to 'engineering leadership' (more honest — this site is about engineering management, not CIO-level strategy) and 'collaboration' swapped for 'showing your work', a signature phrase from the blog. Updates siteConfig.description, the sr-only homepage h1, docs examples, and the navigation e2e test constant. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b1ab1c5 commit 9f1ec5f

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/ASTRO-ARCHITECTURE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ const posts = (await getCollection('posts'))
316316
.slice(0, 10); // Show latest 10 posts
317317
---
318318
319-
<BaseLayout title="Ben Balter" description="Technology leadership, collaboration, and open source">
319+
<BaseLayout title="Ben Balter" description="Engineering leadership, open source, and showing your work">
320320
<div class="posts">
321321
{posts.map(post => <PostCard post={post} />)}
322322
</div>
@@ -415,7 +415,7 @@ end_date: '2024-07-08' # Omit for current position
415415

416416
```yaml
417417
title: Ben Balter
418-
description: Technology leadership, collaboration, and open source
418+
description: Engineering leadership, open source, and showing your work
419419
url: https://ben.balter.com
420420
author:
421421
name: Ben Balter
@@ -512,7 +512,7 @@ export async function GET(context: APIContext) {
512512
513513
return rss({
514514
title: 'Ben Balter',
515-
description: 'Technology leadership, collaboration, and open source',
515+
description: 'Engineering leadership, open source, and showing your work',
516516
site: context.site!,
517517
items: sortedPosts.map(post => ({
518518
title: post.data.title,

docs/ASTRO_FEEDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The feed has been validated and parses without errors using:
5555
### Main Feed
5656

5757
- **Title**: Ben Balter
58-
- **Description**: Technology leadership, collaboration, and open source
58+
- **Description**: Engineering leadership, open source, and showing your work
5959
- **Link**: https://ben.balter.com/
6060
- **Format**: RSS 2.0
6161

e2e/navigation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import { waitForPageReady } from './helpers';
33

4-
const TAGLINE = 'Technology leadership, collaboration, and open source';
4+
const TAGLINE = 'Engineering leadership, open source, and showing your work';
55

66
test.describe('Navigation Tagline', () => {
77
// Note: Tagline is intentionally hidden on mobile viewports via CSS

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const siteConfig = {
2727
name: 'Ben Balter',
2828
author: 'Ben Balter',
2929
url: 'https://ben.balter.com',
30-
description: 'Technology leadership, collaboration, and open source',
30+
description: 'Engineering leadership, open source, and showing your work',
3131

3232
// Repository information
3333
githubRepo: 'benbalter/benbalter.github.com',

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const popularPosts = popularPostSlugs
3030
---
3131

3232
<BaseLayout description={description} hero={true}>
33-
<h1 class="sr-only">Ben Balter — Technology leadership, collaboration, and open source</h1>
33+
<h1 class="sr-only">Ben Balter — Engineering leadership, open source, and showing your work</h1>
3434
<!-- Popular Posts Section -->
3535
{popularPosts.length > 0 && (
3636
<section class="mb-16 max-md:mb-8">

0 commit comments

Comments
 (0)