Skip to content

Commit

Permalink
Added ne file layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
PrisonBreak8 committed Apr 10, 2024
1 parent d720901 commit bc4c878
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions public/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

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>
);
}

0 comments on commit bc4c878

Please sign in to comment.