Files

32 lines
638 B
TypeScript
Raw Permalink Normal View History

2025-03-12 15:18:08 -06:00
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
2025-03-12 15:15:59 -06:00
2025-03-12 15:18:08 -06:00
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
2025-03-12 15:15:59 -06:00
2025-03-12 15:18:08 -06:00
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
2025-03-12 15:15:59 -06:00
<html lang="en">
2025-03-12 15:18:08 -06:00
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
2025-03-12 15:15:59 -06:00
</html>
2025-03-12 15:18:08 -06:00
);
2025-03-12 15:15:59 -06:00
}