9c7c2f1163
* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
18 lines
402 B
TypeScript
18 lines
402 B
TypeScript
import { UserProvider } from "@/features/user/user-provider.tsx";
|
|
import Shell from "./shell.tsx";
|
|
import { Outlet } from "react-router-dom";
|
|
import { Helmet } from "react-helmet-async";
|
|
|
|
export default function DashboardLayout() {
|
|
return (
|
|
<UserProvider>
|
|
<Shell>
|
|
<Helmet>
|
|
<title>Home</title>
|
|
</Helmet>
|
|
<Outlet />
|
|
</Shell>
|
|
</UserProvider>
|
|
);
|
|
}
|