Remove communication, infrastructure, and development categories from navigation (now in Admin Core on port 3008). Rename Admin v2 to Admin Lehrer KI in sidebar, header, and browser title. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
505 B
TypeScript
23 lines
505 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'BreakPilot Admin Lehrer KI',
|
|
description: 'Neues Admin-Frontend mit verbesserter Navigation und Rollen-System',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="de">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|