import type { Metadata } from "next" import type { LangParams, LayoutArgs } from "@/types/params" export const metadata: Metadata = { title: "Webview", } export default function RootLayout({ children, params, }: React.PropsWithChildren>) { return ( {children} ) }