First frontend

This commit is contained in:
Julian Appel 2026-04-30 21:37:21 +02:00
parent c3e98af5b6
commit ac48e03404
16 changed files with 1764 additions and 5 deletions

15
src/app/layout.tsx Normal file
View file

@ -0,0 +1,15 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Leistungsbilanz",
description: "Leistungsbilanz fuer elektrische Verbraucher",
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="de">
<body>{children}</body>
</html>
);
}