diff --git a/packages/web/pages/privacy.tsx b/packages/web/pages/privacy.tsx
deleted file mode 100644
index 6ecdbf013..000000000
--- a/packages/web/pages/privacy.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import { useRouter } from 'next/router'
-import { PrivacyPolicy } from '../components/templates/PrivacyPolicy'
-import { SettingsLayout } from '../components/templates/SettingsLayout'
-
-export default function Privacy(): JSX.Element {
- const router = useRouter()
- const appEmbedViewQuery = router.query.isAppEmbedView as string | undefined
- const isAppEmbedView = (appEmbedViewQuery ?? '').length > 0
-
- if (isAppEmbedView) {
- return
- } else {
- return (
-
-
-
- )
- }
-}