import type { Metadata, Viewport } from 'next' import './globals.css' export const metadata: Metadata = { title: 'BreakPilot ComplAI — Investor Pitch Deck', description: 'Datensouveraenitaet meets KI-Compliance. Pre-Seed Q4 2026.', manifest: '/manifest.json', robots: { index: false, follow: false }, appleWebApp: { capable: true, statusBarStyle: 'black-translucent', title: 'BreakPilot Pitch', }, } export const viewport: Viewport = { themeColor: '#6366f1', width: 'device-width', initialScale: 1, maximumScale: 1, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children}