"use client"; import "#/styles/globals.css"; // include styles from the ui package import "@zitadel/react/styles.css"; import { AddressBar } from "#/ui/AddressBar"; import { GlobalNav } from "#/ui/GlobalNav"; import { Lato } from "next/font/google"; import { ThemeProvider } from "next-themes"; import Byline from "#/ui/Byline"; const lato = Lato({ weight: "400", subsets: ["latin"], }); export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); } // export const metadata = () => { // return ( // <> // // ZITADEL Login Playground // // // ); // };