yt-dlp headless capture (15dk segmentleme), ses peak + chat velocity sinyal tespiti, OpenAI Whisper STT (kelime zaman damgalı), BullMQ/Redis/Postgres altyapısı ve kanal durumu + transkript kütüphanesi gösteren Next.js panel. LLM virality skorlama, render/crop/altyazı ve multi-platform dağıtım bu fazın kapsamı dışında. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
22 lines
523 B
TypeScript
22 lines
523 B
TypeScript
import type { Metadata } from "next";
|
|
import Link from "next/link";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "StreamClipper AI — Panel",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="tr">
|
|
<body>
|
|
<nav className="nav">
|
|
<Link href="/">Kanal Durumu</Link>
|
|
<Link href="/segments">Segment & Aday Kütüphanesi</Link>
|
|
</nav>
|
|
<main>{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|