13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
export const metadata = {
|
|
title: 'Reckue Dev',
|
|
description: 'Project management & Claude Code sessions',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|