Newer
Older
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { AuthProvider } from "@/lib/components/AuthComponent";
variable: "--font-geist-sans",
subsets: ["latin"],
variable: "--font-geist-mono",
subsets: ["latin"],
title: "Create Next App",
description: "Generated by create next app",
children: React.ReactNode;
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);