first commit

This commit is contained in:
Mateusz Gruszczyński
2026-03-04 15:21:03 +01:00
commit 5429f176c9
53 changed files with 3808 additions and 0 deletions

19
frontend/app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
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>
);
}