* add missing title * add * update * update * update * fix lint * Update AppsLayout.tsx * update * Update bookings-listing-view.tsx * update --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
18 lines
629 B
TypeScript
18 lines
629 B
TypeScript
import LegacyPage from "@pages/insights/index";
|
|
import { withAppDirSsr } from "app/WithAppDirSsr";
|
|
import { _generateMetadata } from "app/_utils";
|
|
import { WithLayout } from "app/layoutHOC";
|
|
|
|
import { getServerSideProps } from "@lib/insights/getServerSideProps";
|
|
import { type inferSSRProps } from "@lib/types/inferSSRProps";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
() => "Insights",
|
|
(t) => t("insights_subtitle")
|
|
);
|
|
|
|
const getData = withAppDirSsr<inferSSRProps<typeof getServerSideProps>>(getServerSideProps);
|
|
|
|
export default WithLayout({ getLayout: null, getData, Page: LegacyPage });
|