You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
689 B

  1. import type { Metadata } from "next";
  2. import { Geist, Geist_Mono } from "next/font/google";
  3. import "./globals.css";
  4. const geistSans = Geist({
  5. variable: "--font-geist-sans",
  6. subsets: ["latin"],
  7. });
  8. const geistMono = Geist_Mono({
  9. variable: "--font-geist-mono",
  10. subsets: ["latin"],
  11. });
  12. export const metadata: Metadata = {
  13. title: "Create Next App",
  14. description: "Generated by create next app",
  15. };
  16. export default function RootLayout({
  17. children,
  18. }: Readonly<{
  19. children: React.ReactNode;
  20. }>) {
  21. return (
  22. <html lang="en">
  23. <body
  24. className={`${geistSans.variable} ${geistMono.variable} antialiased`}
  25. >
  26. {children}
  27. </body>
  28. </html>
  29. );
  30. }