25 lines
567 B
TypeScript
25 lines
567 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import SessionProvider from "@/components/SessionProvider";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SaveTheMoment Atlas - Buchungs- & Tourenmanagement",
|
|
description: "Internes Management-System für Save the Moment Fotoboxen",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="de">
|
|
<body>
|
|
<SessionProvider session={null}>
|
|
{children}
|
|
</SessionProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|