import type { Metadata } from 'next' import { AppProvider } from '@/lib/context' import ConsentBanner from '@/components/layout/ConsentBanner' import ScriptManager from '@/components/layout/ScriptManager' import './globals.css' export const metadata: Metadata = { title: 'BreakPilot | Deterministic Regulatory Engineering Platform', description: 'Deterministische regulatorische Analyse für Maschinenbau, Fertigung und kritische Infrastruktur. Keine Halluzinationen. Keine US-Cloud. Volle Nachvollziehbarkeit.', keywords: ['Compliance', 'Regulatory Engineering', 'CE-Kennzeichnung', 'Maschinenverordnung', 'DSGVO', 'NIS2', 'AI Act', 'Sovereign AI', 'CRA', 'OTA'], robots: { index: true, follow: true }, openGraph: { title: 'BreakPilot | Deterministic Regulatory Engineering', description: 'Deterministische regulatorische Analyse. Keine Halluzinationen. Keine Compliance-Lücken.', type: 'website', locale: 'de_DE', }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }