mtg-visual-search/app/layout.tsx

23 lines
466 B
TypeScript
Raw Normal View History

2024-05-24 01:16:02 +00:00
import type { Metadata } from "next"
import { Inter } from "next/font/google"
import "./globals.css"
2024-05-23 21:18:39 +00:00
2024-05-24 01:16:02 +00:00
const inter = Inter({ subsets: ["latin"] })
2024-05-23 21:18:39 +00:00
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
2024-05-24 01:16:02 +00:00
}
2024-05-23 21:18:39 +00:00
export default function RootLayout({
children,
}: Readonly<{
2024-05-24 01:16:02 +00:00
children: React.ReactNode
2024-05-23 21:18:39 +00:00
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
2024-05-24 01:16:02 +00:00
)
2024-05-23 21:18:39 +00:00
}