Add app/layout.tsx

This commit is contained in:
kleap-admin 2026-01-15 11:57:56 +00:00
parent 3bfb773863
commit 605225f866
1 changed files with 14 additions and 0 deletions

14
app/layout.tsx Normal file
View File

@ -0,0 +1,14 @@
export const metadata = {
title: 'v4-1768478268576 - Kleap Test',
description: 'Test deployment via Gitea + Coolify'
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body style={{margin: 0, minHeight: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center'}}>
{children}
</body>
</html>
)
}