diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index b388a3c6c..cb5e5d757 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -351,6 +351,7 @@ posted: "投稿しました"
autoReloadWhenDisconnected: "サーバー切断時に自動リロード"
autoNoteWatch: "ノートの自動ウォッチ"
reduceUiAnimation: "UIのアニメーションを減らす"
+share: "共有"
_2fa:
registerDevice: "デバイスを登録"
diff --git a/src/client/pages/share.vue b/src/client/pages/share.vue
new file mode 100644
index 000000000..07bb70737
--- /dev/null
+++ b/src/client/pages/share.vue
@@ -0,0 +1,76 @@
+
+
+
+
{{ $t('share') }}
+
+
+ {{ title }}
+
+
{{ text }}
+
{{ $t('post') }}
+
+
+
+
+
+
+
+
+
diff --git a/src/client/router.ts b/src/client/router.ts
index 16ab96dea..70bc48c49 100644
--- a/src/client/router.ts
+++ b/src/client/router.ts
@@ -52,6 +52,7 @@ export const router = new VueRouter({
{ path: '/tags/:tag', component: page('tag') },
{ path: '/auth/:token', component: page('auth') },
{ path: '/authorize-follow', component: page('follow') },
+ { path: '/share', component: page('share') },
/*{ path: '*', component: MkNotFound }*/
],
// なんかHacky