chore: updated icon and added image fields 8d1fefca
Steve · 2026-01-13 21:57 3 file(s) · +3 −0
packages/client/public/icon.png +0 −0

Binary file — no preview.

packages/client/scripts/publish-to-atproto.ts +2 −0
169 169
		site: PUBLICATION_URI,
170 170
		path: postPath,
171 171
		content: markdownContent,
172 +
		coverImage: post.frontmatter.ogImage,
172 173
		textContent: textContent.slice(0, 10000), // Limit text content length
173 174
		publishedAt: publishDate.toISOString(),
174 175
		canonicalUrl: `${SITE_URL}${postPath}`,
215 216
		site: PUBLICATION_URI,
216 217
		path: postPath,
217 218
		content: markdownContent,
219 +
		coverImage: post.frontmatter.ogImage,
218 220
		textContent: textContent.slice(0, 10000), // Limit text content length
219 221
		publishedAt: publishDate.toISOString(),
220 222
		canonicalUrl: `${SITE_URL}${postPath}`,
packages/server/src/routes/now.ts +1 −0
151 151
				site: "at://did:plc:ia2zdnhjaokf5lazhxrmj6eu/site.standard.publication/3mbykzswhqc2x",
152 152
				...(normalizedPath && { path: normalizedPath.trim() }),
153 153
				content: markdownContent,
154 +
				coverImage: "https://stevedylan.dev/icon.png",
154 155
				textContent: textContent,
155 156
				publishedAt: new Date().toISOString(),
156 157
			},