17 lines
316 B
TypeScript
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>
|
|
);
|
|
}
|