From 0473060773a7acb10a6f11e5e22ec13ddf5650ba Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 14 Jun 2025 12:08:48 +0000 Subject: feat: add configuration and default image for blog posts - Introduced a new configuration file to centralize author information and default image settings for blog posts. - Added a default image path in the blog post configuration for improved content presentation. - Updated blog post schema to utilize the new configuration for author details, enhancing structured data representation. --- src/config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/config.ts (limited to 'src/config.ts') diff --git a/src/config.ts b/src/config.ts new file mode 100644 index 0000000..a1b0c15 --- /dev/null +++ b/src/config.ts @@ -0,0 +1,10 @@ +export const config = { + author: { + name: "Valentin Popov", + url: "https://popov.link/", + sameAs: ["https://www.linkedin.com/in/valentineus/", "https://github.com/valentineus"], + }, + posts: { + defaultImage: "/images/photo.png", + }, +}; -- cgit v1.2.3