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

{children}
); };