Files
aidoit.top/apps/msp/app/layout.tsx
T
Pavel Kerndl c0b013f067
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s
Initialize Aidoit v0.1 monorepo
2026-07-27 18:27:37 +02:00

17 lines
316 B
TypeScript

import "@aidoit/ui/styles.css";
export const metadata = {
title: "Aidoit MSP",
description: "Infrastructure management workspace",
};
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}