From 605225f866d76aeadaa5ba85e30d4d8e24c596ac Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 11:57:56 +0000 Subject: [PATCH] Add app/layout.tsx --- app/layout.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/layout.tsx diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..e6de90a --- /dev/null +++ b/app/layout.tsx @@ -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 ( + + + {children} + + + ) +} \ No newline at end of file