14 blog post schedule

This commit is contained in:
Timo Knuth
2026-01-26 16:43:47 +01:00
parent 702e2710de
commit 2771faf3ba
44 changed files with 3561 additions and 2174 deletions

17
src/lib/author-data.ts Normal file
View File

@@ -0,0 +1,17 @@
import type { AuthorProfile } from "./types";
export const authors: AuthorProfile[] = [
{
slug: "timo",
name: "Timo Knuth",
role: "Founder, Growth & Product Marketing",
bio: "Building QR Master: dynamic QR management, tracking, and bulk ops for B2B teams.",
image: "/favicon.svg",
sameAs: [
"https://www.linkedin.com/in/qr-master-44b6863a2/",
"https://x.com/TIMO_QRMASTER",
"https://www.instagram.com/qrmaster_net/"
],
knowsAbout: ["Dynamic QR Codes", "Tracking & Analytics", "B2B SaaS", "UTM"]
}
];