20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
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>
|
|
);
|
|
}
|