titles/app/layout.tsx
christian fab52dbfaf
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m36s
working in development
2024-05-16 23:23:10 +02:00

24 lines
524 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { SessionProvider } from "next-auth/react";
const inter = Inter({ subsets: ["latin"] });
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">
<body className={inter.className}>{children}</body>
</html>
);
}