diff --git a/packages/interface/src/App.tsx b/packages/interface/src/App.tsx
index f4a46f668..bc8b92835 100644
--- a/packages/interface/src/App.tsx
+++ b/packages/interface/src/App.tsx
@@ -28,6 +28,7 @@ import { RedirectPage } from './screens/Redirect';
import { SettingsScreen } from './screens/Settings';
import { TagScreen } from './screens/Tag';
import AppearanceSettings from './screens/settings/AppearanceSettings';
+import ContactsSettings from './screens/settings/ContactsSettings';
import ExperimentalSettings from './screens/settings/ExperimentalSettings';
import GeneralSettings from './screens/settings/GeneralSettings';
import KeysSettings from './screens/settings/KeysSetting';
@@ -103,6 +104,7 @@ function SettingsRoutes({ modal = false }) {
} />
} />
+ } />
} />
} />
} />
diff --git a/packages/interface/src/screens/settings/ContactsSettings.tsx b/packages/interface/src/screens/settings/ContactsSettings.tsx
new file mode 100644
index 000000000..581c1df18
--- /dev/null
+++ b/packages/interface/src/screens/settings/ContactsSettings.tsx
@@ -0,0 +1,12 @@
+import React from 'react';
+
+import { SettingsContainer } from '../../components/settings/SettingsContainer';
+import { SettingsHeader } from '../../components/settings/SettingsHeader';
+
+export default function ContactsSettings() {
+ return (
+
+
+
+ );
+}