feat: Infrastructure project in Mission Control + UFW firewall configured

This commit is contained in:
root
2026-02-16 12:00:31 +00:00
parent 73194284f4
commit 605248663e
2 changed files with 23 additions and 14 deletions
@@ -28,6 +28,13 @@ const projects: ProjectSummary[] = [
status: "paused",
color: "#6366f1",
},
{
id: "infrastructure",
name: "Infrastructure",
description: "Security, backups, APIs, and system config",
status: "active",
color: "#10b981",
},
];
const statusConfig: Record<TaskStatus, { label: string; color: string; bg: string }> = {
@@ -46,7 +53,7 @@ const fadeUp = {
export default function MissionControlDashboard() {
const { tasks, toggleTask, updateTaskStatus, getProjectProgress, getTasksByProject } =
useMissionControl();
const [selectedProject, setSelectedProject] = useState<"sitemente" | "holacompi">("sitemente");
const [selectedProject, setSelectedProject] = useState<"sitemente" | "holacompi" | "infrastructure">("sitemente");
const [filter, setFilter] = useState<TaskStatus | "all">("all");
const projectTasks = getTasksByProject(selectedProject);