704f4df2a8
Bring the Econsult-family design tokens (see design-system-econsult.md) into leistungsbilanz-ts and add a persistent sidebar for the projects area, mirroring elt-planung-suite / Einsatz-Orga. The sidebar lists all projects and, inside a project, jumps to its sections; the tree editor stays sidebar-free since it needs the full width. The projects overview page is decluttered to a single stacked column (create/import/global devices) now that the project list lives in the sidebar.
20 lines
532 B
TypeScript
20 lines
532 B
TypeScript
import type { Metadata } from "next";
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import "./globals.css";
|
|
import { AppShell } from "../frontend/components/AppShell";
|
|
|
|
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>
|
|
<AppShell>{children}</AppShell>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|