Files
Frontend/src/pages/dashboard/expert-management/index.jsx

24 lines
692 B
JavaScript

import WithAuthMiddleware from "@/middlewares/WithAuth";
import {parse} from "next-useragent";
import DashboardExpertManagementComponent from "@/components/dashboard/expert-management";
export default function ExpertManagement() {
return (
<WithAuthMiddleware>
<DashboardExpertManagementComponent/>
</WithAuthMiddleware>
);
}
export async function getServerSideProps({req, locale}) {
const {isBot} = parse(req.headers["user-agent"]);
return {
props: {
messages: (await import(`&/locales/${locale}/app.json`)).default,
title: "Dashboard.expert_management",
isBot,
locale
},
};
}