20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
import "./globals.css";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "mt-traffic",
|
|
description: "MikroTik live traffic dashboards"
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="pl" className="dark">
|
|
<body>
|
|
<div className="min-h-screen">
|
|
{children}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|