initial commit

This commit is contained in:
2026-05-07 06:41:36 +01:00
commit 783400884a
23 changed files with 2904 additions and 0 deletions

19
src/app/layout.js Normal file
View File

@@ -0,0 +1,19 @@
import './globals.css';
import { Inter } from 'next/font/google';
const inter = Inter({ subsets: ['latin'] });
/** @type {import('next').Metadata} */
export const metadata = {
title: 'Proxmox Monitor',
description: 'Real-time dashboard for Proxmox VE',
};
/** @param {{ children: import('react').ReactNode }} props */
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}