21 lines
516 B
TypeScript
Executable File
21 lines
516 B
TypeScript
Executable File
import "~/styles/globals.css";
|
|
|
|
import { GeistSans } from "geist/font/sans";
|
|
import { type Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Is Madeline the Cutest?",
|
|
description: "Answering the easiest question in the world!",
|
|
icons: [{ rel: "icon", url: "/favicon.png" }],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" className={`${GeistSans.variable}`}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|