20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Digital Home",
|
|
description: "Personal home dashboard",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="ru" className="dark">
|
|
<body style={{fontFamily: 'system-ui, -apple-system, sans-serif'}}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|