Initialize Aidoit v0.1 monorepo
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s

This commit is contained in:
Pavel Kerndl
2026-07-27 18:27:37 +02:00
commit c0b013f067
65 changed files with 1323 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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>
);
}
+11
View File
@@ -0,0 +1,11 @@
export default function MspHomePage() {
return (
<main style={{ padding: "48px", maxWidth: "1000px", margin: "0 auto" }}>
<p style={{ color: "var(--accent)", fontWeight: 800 }}>AIDOIT MSP</p>
<h1>Infrastructure workspace</h1>
<p style={{ color: "var(--muted)" }}>
VPS, Proxmox, Docker, LXC, monitoring, backups and deployments will live here.
</p>
</main>
);
}