import { cn } from "@/lib/utils";
import { Outlet } from "react-router-dom";
export default function LocaleLayout() {
return (
<>
<div className={cn("h-dvh bg-background font-sans antialiased")}>
<Outlet />
</div>
</>
);
}