24 lines
650 B
JavaScript
24 lines
650 B
JavaScript
import DashboardFirstComponent from "@/components/dashboard/first";
|
|
import TitlePage from "@/core/components/TitlePage";
|
|
import WithAuthMiddleware from "@/middlewares/WithAuth";
|
|
import { parse } from "next-useragent";
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<WithAuthMiddleware>
|
|
<TitlePage text="Dashboard.dashboard_page" />
|
|
<DashboardFirstComponent />
|
|
</WithAuthMiddleware>
|
|
);
|
|
}
|
|
|
|
export async function getServerSideProps({ req, locale }) {
|
|
const { isBot } = parse(req.headers["user-agent"]);
|
|
return {
|
|
props: {
|
|
messages: (await import(`&/locales/${locale}/app.json`)).default,
|
|
isBot,
|
|
},
|
|
};
|
|
}
|