diff --git a/shared/locales/de/website-app.json b/shared/locales/de/website-app.json
new file mode 100644
index 000000000..f97c4e1be
--- /dev/null
+++ b/shared/locales/de/website-app.json
@@ -0,0 +1,6 @@
+{
+ "title": "Mobile App für Empfänger:innen",
+ "subtitle": "Mit der App kannst du Zahlungen von Social Income einfach verwalten, Umfragen ausfüllen und deine Daten aktualisieren.",
+ "android": "Hast du ein Android Telefon?",
+ "apple": "Hast du ein iPhone?"
+}
diff --git a/shared/locales/en/website-app.json b/shared/locales/en/website-app.json
new file mode 100644
index 000000000..6be14ae8e
--- /dev/null
+++ b/shared/locales/en/website-app.json
@@ -0,0 +1,6 @@
+{
+ "title": "Mobile App for Recipients",
+ "subtitle": "Recipients with a smartphone can easily manage their payments, complete surveys and update their personal information all in one place.",
+ "android": "Recipients with an Android phone",
+ "apple": "Recipients with an iPhone"
+}
diff --git a/shared/locales/it/website-app.json b/shared/locales/it/website-app.json
new file mode 100644
index 000000000..b12e2e24a
--- /dev/null
+++ b/shared/locales/it/website-app.json
@@ -0,0 +1,6 @@
+{
+ "title": "App mobile per destinatari",
+ "subtitle": "I destinatari con uno smartphone possono gestire facilmente i loro pagamenti, completare sondaggi e aggiornare le loro informazioni personali tutto in un unico posto.",
+ "android": "Destinatari con un telefono Android",
+ "apple": "Destinatari con un iPhone"
+}
diff --git a/website/src/app/[lang]/[region]/(website)/app/(assets)/applestore.svg b/website/src/app/[lang]/[region]/(website)/app/(assets)/applestore.svg
new file mode 100755
index 000000000..072b425a1
--- /dev/null
+++ b/website/src/app/[lang]/[region]/(website)/app/(assets)/applestore.svg
@@ -0,0 +1,46 @@
+
diff --git a/website/src/app/[lang]/[region]/(website)/app/(assets)/playstore.svg b/website/src/app/[lang]/[region]/(website)/app/(assets)/playstore.svg
new file mode 100644
index 000000000..4c4ae4b9a
--- /dev/null
+++ b/website/src/app/[lang]/[region]/(website)/app/(assets)/playstore.svg
@@ -0,0 +1,22 @@
+
+
\ No newline at end of file
diff --git a/website/src/app/[lang]/[region]/(website)/app/page.tsx b/website/src/app/[lang]/[region]/(website)/app/page.tsx
new file mode 100644
index 000000000..8903ad0b1
--- /dev/null
+++ b/website/src/app/[lang]/[region]/(website)/app/page.tsx
@@ -0,0 +1,55 @@
+import { DefaultPageProps } from '@/app/[lang]/[region]';
+import { Translator } from '@socialincome/shared/src/utils/i18n';
+import { BaseContainer, Typography } from '@socialincome/ui';
+import Image from 'next/image';
+import Link from 'next/link';
+import Applestore from './(assets)/applestore.svg';
+import Playstore from './(assets)/playstore.svg';
+
+export default async function Page({ params }: DefaultPageProps) {
+ const translator = await Translator.getInstance({
+ language: params.lang,
+ namespaces: ['website-app'],
+ });
+
+ return (
+
+