refactor: migrate from pnpm workspaces to single-package structure with shared types

This commit is contained in:
Yusuf İpek
2025-10-05 04:42:47 +03:00
parent ddda9fb9dd
commit 99e1762068
32 changed files with 945 additions and 183 deletions
+15
View File
@@ -0,0 +1,15 @@
import './globals.css';
import type { ReactNode } from 'react';
export const metadata = {
title: 'YouTube Chat Client',
description: 'High-performance YouTube Live chat dashboard'
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}