production: docker + nginx config for rf-flux.com
Deploy to VPS / deploy (push) Has been cancelled

This commit is contained in:
2026-03-20 13:46:05 -05:00
parent b275b19f08
commit fc24313f15
187 changed files with 20977 additions and 767 deletions
+30
View File
@@ -0,0 +1,30 @@
import type { Metadata } from "next";
import "@/app/globals.css";
export const metadata: Metadata = {
title: "FLUX Command Center",
description: "CMS and Administration",
robots: "noindex, nofollow", // Evita que Google indexe el CMS
};
export default function HQLayout({ children }: { children: React.ReactNode }) {
return (
// 🔥 El CMS siempre estará en inglés y forzado en modo oscuro
<html lang="en" className="dark">
{/* Mantenemos tu fondo negro absoluto, texto blanco y el color de selección cyan */}
<body className="min-h-screen bg-[#050505] text-[#F5F5F7] antialiased selection:bg-[#00F0FF] selection:text-black">
{/* Patrón de puntos sutil en el fondo para dar aspecto técnico */}
<div
className="fixed inset-0 opacity-[0.03] pointer-events-none"
style={{ backgroundImage: 'radial-gradient(circle at 2px 2px, white 1px, transparent 0)', backgroundSize: '32px 32px' }}
></div>
<main className="relative z-10">
{children}
</main>
</body>
</html>
);
}