mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
25 lines
466 B
TypeScript
25 lines
466 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Werkzeugkiste",
|
|
description: "Collection of useful digital utilities",
|
|
icons: [
|
|
{
|
|
rel: "icon",
|
|
url: "/favicon.ico",
|
|
},
|
|
],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`antialiased`}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|