import { Layout, LayoutContent, LayoutHeader, ProtectedRoute } from "@/components"; import { PropsWithChildren } from "react"; import { Trans } from "react-i18next"; import { SettingsProvider } from "./SettingsContext"; export const SettingsLayout = ({ children }: PropsWithChildren) => { return (

{children}
); };