Spaces:
Running
Running
File size: 1,127 Bytes
88b6846 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import type { Metadata } from "next";
import { DM_Sans, Playfair_Display, JetBrains_Mono } from "next/font/google";
import "./globals.css";
import { Providers } from "@/components/Providers";
const dmSans = DM_Sans({
subsets: ["latin"],
variable: '--font-dm-sans',
display: 'swap',
});
const playfair = Playfair_Display({
subsets: ["latin"],
variable: '--font-playfair',
display: 'swap',
});
const jetbrains = JetBrains_Mono({
subsets: ["latin"],
variable: '--font-jetbrains',
display: 'swap',
});
export const metadata: Metadata = {
title: "TTS Dataset Collector - Build Speech Datasets",
description: "Advanced TTS Dataset Collection Tool",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body className={`${dmSans.variable} ${playfair.variable} ${jetbrains.variable} font-sans antialiased bg-background text-foreground min-h-screen selection:bg-primary/30 selection:text-primary-foreground`}>
<Providers>
{children}
</Providers>
</body>
</html>
);
}
|