Add app/layout.tsx

This commit is contained in:
kleap-admin 2026-01-15 11:49:03 +00:00
parent 3325a5ab77
commit 4dbe9863a8
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-1768477737854' }
export default function RootLayout({ children }: { children: React.ReactNode }) {
return <html><body>{children}</body></html>
}