A centralized, high-performance portal linking all active utilities and documents under the unified Codex neon-brutalist theme.
search
Integrate App
Extend the Clown Hub ecosystem
This dashboard is built on a modular registry system. To register a new application, simple append its metadata schema to the APPS array inside your configuration file:
script.js
const APPS = [
// ... existing apps
{
id: "new_app",
name: "My Custom App",
path: "new_app/index.html",
category: "Utility",
icon: "settings",
description: "Add a short description describing your new app functions here.",
colorRgb: "244, 63, 94", // Hex equivalent: #f43f5e (rose glow)
badge: "New",
tags: ["Custom", "Interactive"]
}
];
info
Ensure the directory exists inside the project directory and has its main entry point at index.html.