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

{children}
); };