17 lines
435 B
TypeScript
17 lines
435 B
TypeScript
import type { Metadata } from "next";
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Leistungsbilanz",
|
|
description: "Leistungsbilanz für elektrische Verbraucher und Stromkreislisten",
|
|
};
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="de">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|