Files
FL-Akademie/app/layout.tsx

25 lines
659 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from "next";
import "./globals.css";
import { Providers } from "@/components/providers";
import { SiteHeader } from "@/components/site-header";
import { SiteFooter } from "@/components/site-footer";
export const metadata: Metadata = {
title: "Motorrad Akademie LMS (Dev)",
description: "Private Lernplattform Entwicklungsumgebung",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="de">
<body>
<Providers>
<SiteHeader />
<main>{children}</main>
<SiteFooter />
</Providers>
</body>
</html>
);
}