feat(WEB-170): edit profile view

This commit is contained in:
Simon Emanuelsson
2024-04-11 18:51:38 +02:00
parent 82e4d40203
commit 9396b2c3d5
114 changed files with 3642 additions and 2171 deletions

View File

@@ -17,14 +17,25 @@ export const myPages = {
sv: "/sv/mina-sidor",
}
/** TODO: Update to relevant paths */
/** @type {import('@/types/routes').LangRoute} */
export const profile = {
da: `${myPages.da}/profil-da`,
de: `${myPages.de}/profile-de`,
en: `${myPages.en}/profile-en`,
fi: `${myPages.fi}/profile-fi`,
no: `${myPages.no}/profile-no`,
sv: `${myPages.sv}/profile-sv`,
da: `${myPages.da}/profil`,
de: `${myPages.de}/profil`,
en: `${myPages.en}/profile`,
fi: `${myPages.fi}/profiili`,
no: `${myPages.no}/profil`,
sv: `${myPages.sv}/profil`,
}
/** @type {import('@/types/routes').LangRoute} */
export const profileEdit = {
da: `${profile.da}/edit`,
de: `${profile.de}/edit`,
en: `${profile.en}/edit`,
fi: `${profile.fi}/edit`,
no: `${profile.no}/edit`,
sv: `${profile.sv}/edit`,
}
/** @type {import('@/types/routes').LangRoute} */