initializing the files and the memory bank.

This commit is contained in:
Yusuf İpek
2025-10-05 04:42:47 +03:00
parent 2dddb27902
commit ddda9fb9dd
28 changed files with 467 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
:root {
color-scheme: dark light;
}
body {
margin: 0;
font-family: system-ui, sans-serif;
background: #0f0f0f;
color: #f5f5f5;
}
+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>
);
}
+8
View File
@@ -0,0 +1,8 @@
export default function HomePage() {
return (
<main>
<h1>youtube-client</h1>
<p>Operator dashboard under construction.</p>
</main>
);
}