mtg-visual-search/app/layout.tsx

23 lines
488 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 = {
2024-05-25 17:41:58 +00:00
title: "MTG Art Search",
description: "Search for magic cards by features in their artwork",
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
}