feat(WEB-154): my profile view

This commit is contained in:
Simon Emanuelsson
2024-04-05 08:28:20 +02:00
parent 3b05b9f205
commit 82e4d40203
95 changed files with 1239 additions and 196 deletions
+17
View File
@@ -0,0 +1,17 @@
export const pageNames = {
da: "mine-sider",
de: "mein-profil",
en: "my-pages",
fi: "minun-sivujani",
no: "mine-sider",
sv: "mina-sidor",
}
export const profilePageNames = {
da: "mine-sider/profil",
de: "mein-profil/profil",
en: "my-pages/profile",
fi: "minun-sivujani/profil",
no: "mine-sider/profil",
sv: "mina-sidor/profil",
}
+19
View File
@@ -0,0 +1,19 @@
import type { Lang } from "@/types/lang"
export const pageNames: Record<Lang, string> = {
da: "mine-sider",
de: "mein-profil",
en: "my-pages",
fi: "minun-sivujani",
no: "mine-sider",
sv: "mina-sidor",
}
export const profilePageNames: Record<Lang, string> = {
da: "mine-sider/profil",
de: "mein-profil/profil",
en: "my-pages/profile",
fi: "minun-sivujani/profil",
no: "mine-sider/profil",
sv: "mina-sidor/profil",
}