Files
calendar/apps/web/app/auth/platform/authorize/page.tsx
T
Benny JooandGitHub 0f7ecb3345 chore: migrate low-risk 3 /auth pages to App Router (#18753)
* add i18n string

* Update config.matcher in middleware

* migrate auth/oauth2/authorize

* migrate auth/platform/authorize

* migrate auth/signin
2025-01-21 10:41:00 +01:00

17 lines
333 B
TypeScript

import { _generateMetadata } from "app/_utils";
import { WithLayout } from "app/layoutHOC";
import Page from "~/auth/platform/authorize-view";
export const generateMetadata = async () => {
return await _generateMetadata(
(t) => t("authorize"),
() => ""
);
};
export default WithLayout({
getLayout: null,
Page,
});