labyrinth-frontend/src/app/layout.tsx
2025-01-08 22:03:38 +01:00

20 lines
431 B
TypeScript

import type {Metadata} from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "A-Maze-R! Create your own Maze!",
description: "A Maze Generator by fritteli",
icons: "./favicon.ico"
};
export default function RootLayout({children}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
);
}