import type { Metadata } from 'next' import { Inter, JetBrains_Mono } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], variable: '--font-inter', display: 'swap', }) const mono = JetBrains_Mono({ subsets: ['latin'], variable: '--font-mono', display: 'swap', }) export const metadata: Metadata = { title: 'ConfigVault — Centralized Remote Config & Secret Manager', description: 'Enterprise-grade centralized remote configuration and secret management for mobile & web apps.', } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {/* Background ambient lighting */}
{children}
) }