22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
import "~/styles/globals.css";
|
|
|
|
import { GeistSans } from "geist/font/sans";
|
|
|
|
export const metadata = {
|
|
title: "Create T3 App",
|
|
description: "Generated by create-t3-app",
|
|
icons: [{ rel: "icon", url: "/favicon.ico" }],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${GeistSans.variable}`}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|