19 lines
683 B
TypeScript
19 lines
683 B
TypeScript
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: "/favicon1.png",
|
|
sameAs: [
|
|
"https://www.wikidata.org/wiki/Q137919835",
|
|
"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"]
|
|
}
|
|
];
|