homelab-dashboard/app/layout.tsx
Bilal Teke 787aab5e1d v2
2026-04-15 21:19:28 +02:00

20 lines
371 B
TypeScript

import type { Metadata } from 'next';
import { Metadata as NextMetadata } from 'next';
export const metadata: NextMetadata = {
manifest: '/manifest.json',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="de">
<body className="antialiased">
{children}
</body>
</html>
);
}