This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user