reckue-dev/apps/web/src/app/layout.tsx
claude 703c254074 Initial monorepo structure: NestJS API + Next.js Web + Rust Agent
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 16:36:22 +05:00

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