labyrinth-frontend/app/layout.tsx
Manuel Friedli 3efb87bcd8
All checks were successful
/ maven-build (push) Successful in 20s
Refactor
2026-03-07 23:47:38 +01:00

18 lines
403 B
TypeScript

import type {Metadata} from "next";
import "./globals.scss";
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}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}