Skip to content

Commit 3bf9214

Browse files
OG image: embed actual book cover, add CTA, fix meta lengths
- Embed cover-l-1000x1400.png in OG image (was placeholder illustration) - Add 'Read it free online' CTA button in OG image - URL text: agents.siddhantkhare.com - Meta title: 60 chars (was 46) - Meta description: 136 chars (was 92) - Remove SVG source (only PNG needed for OG) Co-authored-by: Ona <no-reply@ona.com>
1 parent 03c4b72 commit 3bf9214

5 files changed

Lines changed: 2 additions & 195 deletions

File tree

public/cover.png

228 KB
Loading

public/og-image.png

43.7 KB
Loading

public/og-image.svg

Lines changed: 0 additions & 193 deletions
This file was deleted.

src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interface Props {
66
description?: string;
77
}
88
9-
const { title, description = "Concepts, workflows, and team practices for AI agent infrastructure. 10 Parts · 33 Chapters." } = Astro.props;
9+
const { title, description = "33 chapters on context engineering, agent security, cost control, and team practices for building AI agent infrastructure in production." } = Astro.props;
1010
const gaId = import.meta.env.PUBLIC_GA_ID || "G-XXXXXXX";
1111
const siteUrl = Astro.site?.toString().replace(/\/$/, "") || "";
1212
const base = import.meta.env.BASE_URL.replace(/\/$/, "");

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const base = import.meta.env.BASE_URL.replace(/\/$/, "");
1919
const totalChapters = allChapters.filter((c) => c.chapter).length;
2020
---
2121

22-
<BaseLayout title="The Agentic Engineering Guide | Siddhant Khare">
22+
<BaseLayout title="The Agentic Engineering Guide | AI Agent Infrastructure Book">
2323
<Header />
2424

2525
<main class="pt-14">

0 commit comments

Comments
 (0)