/
smaker21
/
YouTube-transcript-using-supadata
Обзор
Документация
Войти
/
smaker21
/
YouTube-transcript-using-supadata
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/layout.tsx
41 строка
943 B
Ilya Ostapov
new file: .env.example
12 фев 2026, 18:43
12 фев 2026, 18:43
7016baa
Код
Авторство
О чём код?
import React from "react" import type { Metadata, Viewport } from "next"; import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin", "cyrillic"], variable: "--font-inter", }); const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-jetbrains-mono", }); export const metadata: Metadata = { title: "BriefTube — YouTube Video Summarizer", description: "Get concise AI-powered summaries of any YouTube video in seconds. Key points, timestamps, and TL;DR — all in your browser.", }; export const viewport: Viewport = { themeColor: "#0a0a0f", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <html lang="ru"> <body className={`${inter.variable} ${jetbrainsMono.variable} font-sans antialiased`} > {children} </body> </html> ); }