DOGFATHER UNIVERSE: erste lauffähige Website + Bewerbungs-Postfach + Hosting-Vorbereitung

This commit is contained in:
2026-07-30 20:09:09 +02:00
commit f8e4cf82db
45 changed files with 3462 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/* =====================================================================
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;