app-v4-1768478268576/app/layout.tsx

14 lines
406 B
TypeScript

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>
)
}