Skip to content

Commit

Permalink
manual: fix missing metadata and translations
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj authored Dec 1, 2023
2 parents 1ffea8f + 8864905 commit b0c9012
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import LegacyPage from "@pages/video/no-meeting-found";
import { _generateMetadata } from "app/_utils";
import { headers } from "next/headers";

import PageWrapper from "@components/PageWrapperAppDir";

export const generateMetadata = async () =>
await _generateMetadata(
(t) => t("no_meeting_found"),
(t) => t("no_meeting_found")
);

const Page = async () => {
const h = headers();
const nonce = h.get("x-nonce") ?? undefined;

return (
<PageWrapper getLayout={null} requiresLicense={false} nonce={nonce} themeBasis={null}>
<LegacyPage />
</PageWrapper>
);
};

export default Page;

This file was deleted.

0 comments on commit b0c9012

Please sign in to comment.