impress-2020/pages/privacy.tsx
Matchu eb8a0cf2a9 [WIP] Move Privacy Policy onto its own Next.js page
The first page moved over! Note that this broke navigation on the rest of the app, so don't deploy this until we're done!

The reason it broke was that we had to migrate GlobalHeader and GlobalFooter to the Next.js link & router stuff too, or else it crashed because it wasn't in a react-router-dom context.
2022-09-14 19:16:26 -07:00

5 lines
150 B
TypeScript

import PrivacyPolicyPage from "../src/app/PrivacyPolicyPage";
export default function PrivacyPolicyPageWrapper() {
return <PrivacyPolicyPage />;
}