Files
mini-discord/apps/client/app/layout.tsx
T
2026-07-18 02:10:34 +00:00

35 lines
726 B
TypeScript

import Providers from "@/components/Providers";
import { Roboto } from "next/font/google";
import type { Metadata } from "next";
import "./globals.css";
const roboto = Roboto({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-roboto",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${roboto.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<Providers>
{children}
</Providers>
</body>
</html>
);
}