Files
gregorlohaus.com/src/app/layout.tsx
Gregor Lohaus c0f50abb48 init
2025-04-07 17:18:43 +02:00

26 lines
548 B
TypeScript

import "~/styles/globals.css";
import type { Metadata } from "next";
import { Geist } from "next/font/google";
export const metadata: Metadata = {
title: "Create T3 App",
description: "Generated by create-t3-app",
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
const geist = Geist({
subsets: ["latin"],
variable: "--font-geist-sans",
});
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en" className={`${geist.variable}`}>
<body>{children}</body>
</html>
);
}