diff --git a/website/client/src/components/static/privacyReview.vue b/website/client/src/components/static/privacyReview.vue new file mode 100644 index 0000000000..898cf0f54c --- /dev/null +++ b/website/client/src/components/static/privacyReview.vue @@ -0,0 +1,819 @@ + + + + + diff --git a/website/client/src/components/static/termsReview.vue b/website/client/src/components/static/termsReview.vue new file mode 100644 index 0000000000..c7bbe66e5c --- /dev/null +++ b/website/client/src/components/static/termsReview.vue @@ -0,0 +1,244 @@ + diff --git a/website/client/src/router/static-routes.js b/website/client/src/router/static-routes.js index e896041f97..5777687831 100644 --- a/website/client/src/router/static-routes.js +++ b/website/client/src/router/static-routes.js @@ -22,7 +22,9 @@ const NewsPage = () => import('@/components/static/newStuff'); const OverviewPage = () => import('@/components/static/overview'); const PressKitPage = () => import('@/components/static/pressKit'); const PrivacyPage = () => import('@/components/static/privacy'); +const PrivacyReviewPage = () => import('@/components/static/privacyReview'); const TermsPage = () => import('@/components/static/terms'); +const TermsReviewPage = () => import('@/components/static/termsReview'); export const STATIC_ROUTES = { path: '/static', @@ -79,9 +81,15 @@ export const STATIC_ROUTES = { { name: 'privacy', path: 'privacy', component: PrivacyPage, meta: { requiresLogin: false }, }, + { + name: 'privacyReview', path: 'privacy-review', component: PrivacyReviewPage, meta: { requiresLogin: false }, + }, { name: 'terms', path: 'terms', component: TermsPage, meta: { requiresLogin: false }, }, + { + name: 'termsReview', path: 'terms-review', component: TermsReviewPage, meta: { requiresLogin: false }, + }, { name: 'notFound', path: 'not-found', component: NotFoundPage, meta: { requiresLogin: false }, },