Rename Admin v2 to Admin Compliance in sidebar, header, and browser title. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
506 B
TypeScript
23 lines
506 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 Compliance',
|
|
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>
|
|
)
|
|
}
|