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>
);
}
+3
View File
@@ -0,0 +1,3 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />
+9
View File
@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverActions: true
}
};
module.exports = nextConfig;
+12
View File
@@ -0,0 +1,12 @@
{
"name": "client",
"version": "0.1.0",
"private": true,
"description": "Operator dashboard and overlay UI.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
}
}
+16
View File
@@ -0,0 +1,16 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"types": ["next", "next/types/global", "next/image-types/global"],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": ["node_modules", "dist"]
}