mirror of
https://github.com/JezzWTF/vibepod.git
synced 2026-06-01 15:22:14 +00:00
3974a4cf69
Agent-Logs-Url: https://github.com/JezzWTF/vibepod/sessions/a78fcf03-e979-4777-a428-18cc8eccc095 Co-authored-by: LyAhn <27559362+LyAhn@users.noreply.github.com>
22 lines
488 B
TypeScript
22 lines
488 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "VibePod — TTS Podcast Generator",
|
|
description: "Generate podcast audio using Microsoft VibeVoice 0.5B",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body style={{ background: "var(--background)", color: "var(--foreground)" }}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|