Files
dogfather-universe/assets/js/data-creator.js
T

28 lines
1.0 KiB
JavaScript

/* =====================================================================
data-creator.js — Creator-Datenobjekt (Creator im Spicy-Media-Team)
TODO: Noch keine Creator-Profile final geklärt (siehe Masterplan-
Fragenkatalog, Block Creator/Team). Sobald Namen + Infos da sind,
einfach nach dem Muster unten Objekte ins Array einfügen —
creator.html liest automatisch aus und rendert Filter/Karten.
Felder:
name, category (z.B. "Gaming", "Lifestyle", "Comedy" ...),
role, photo, quote, social, status
===================================================================== */
const CREATORS = [
// Beispiel-Struktur (auskommentiert, zur Orientierung beim Befüllen):
// {
// name: "Name",
// category: "Comedy",
// role: "Creator bei Spicy Media",
// photo: "assets/img/creator-name.jpg",
// quote: "Kurzes Zitat",
// social: { tiktok: "https://tiktok.com/@handle" },
// status: "aktiv",
// },
];
if (typeof window !== "undefined") window.CREATORS = CREATORS;