23 lines
631 B
JavaScript
23 lines
631 B
JavaScript
import DashboardEditProfile from "@/components/dashboard/edit-profile";
|
|
import WithAuthMiddleware from "@/middlewares/WithAuth";
|
|
import {parse} from "next-useragent";
|
|
|
|
export default function LoanFollowUp() {
|
|
return (
|
|
<WithAuthMiddleware>
|
|
<DashboardEditProfile/>
|
|
</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.edit_profile",
|
|
isBot,
|
|
},
|
|
};
|
|
}
|