Add app/layout.tsx

This commit is contained in:
kleap-admin 2026-01-15 11:49:21 +00:00
parent 33af6fcfee
commit 9dc5e556e8
1 changed files with 4 additions and 0 deletions

4
app/layout.tsx Normal file
View File

@ -0,0 +1,4 @@
export const metadata = { title: 'test-1768477756564' }
export default function RootLayout({ children }: { children: React.ReactNode }) {
return <html><body>{children}</body></html>
}