import type { Metadata } from "next"; import Image from "next/image"; import Link from "next/link"; import type { ReactNode } from "react"; import "./globals.css"; import { ThemeProvider } from "./theme-provider"; import { ThemeToggle } from "./theme-toggle"; export const metadata: Metadata = { title: "Stripstream Backoffice", description: "Backoffice administration for Stripstream Librarian" }; export default function RootLayout({ children }: { children: ReactNode }) { return (