>
)
- }
-
+}
diff --git a/src/components/VerticalMenu.tsx b/src/components/VerticalMenu.tsx
index 7be2880..0594dc0 100644
--- a/src/components/VerticalMenu.tsx
+++ b/src/components/VerticalMenu.tsx
@@ -1,18 +1,17 @@
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faUser, faStar, faComments } from '@fortawesome/free-regular-svg-icons'
-import { faLink, faKey } from '@fortawesome/free-solid-svg-icons'
+import { faPassport } from "@fortawesome/free-solid-svg-icons"
import { RecoilRoot, atom, useRecoilState } from 'recoil'
import { useTranslation } from "react-i18next";
export enum Pages {
Profile = 0,
- Links = 1,
- Keys = 2,
- Activities = 3,
- Spotify = 4,
- Services = 5,
- Chat = 6,
+ Identifier = 1,
+ Activities = 2,
+ Spotify = 3,
+ Services = 4,
+ Chat = 5,
}
export const currentPage = atom({
@@ -34,35 +33,28 @@ export default function VerticalMenu() {
className={`w-full px-4 py-2 rounded-lg${page === Pages.Profile ? activeColor : ""}`}
onClick={() => { setPage(Pages.Profile) }}
>
-
{" "}
+
{" "}
{t("profile")}
{ setPage(Pages.Links) }}
+ className={`w-full px-4 py-2 rounded-lg${page === Pages.Identifier ? activeColor : ""}`}
+ onClick={() => { setPage(Pages.Identifier) }}
>
- {" "}
- {t("links")}
-
-
{ setPage(Pages.Keys) }}
- >
- {" "}
- {t("public_keys")}
+ {" "}
+ {t("identifier")}
{ setPage(Pages.Services) }}
>
- {" "}
+ {" "}
{t("services")}
{ setPage(Pages.Chat) }}
>
- {" "}
+ {" "}
{t("chat")}
diff --git a/src/components/Weather.tsx b/src/components/Weather.tsx
new file mode 100644
index 0000000..5ab7b90
--- /dev/null
+++ b/src/components/Weather.tsx
@@ -0,0 +1,7 @@
+export default function Weather() {
+ return (
+ <>
+
+ >
+ )
+}
diff --git a/src/locales/en.json b/src/locales/en.json
index a5b96fc..df928d6 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -2,6 +2,7 @@
"translation": {
"profile": "Profile",
"links": "Links",
+ "identifier": "Identifier",
"public_keys": "Public keys",
"services": "Services",
"chat": "Chat",
diff --git a/src/locales/ja.json b/src/locales/ja.json
index db007f6..2fdc4fb 100644
--- a/src/locales/ja.json
+++ b/src/locales/ja.json
@@ -2,6 +2,7 @@
"translation": {
"profile": "プロフィール",
"links": "リンク",
+ "identifier": "識別子",
"public_keys": "公開鍵",
"services": "サービス",
"chat": "チャット",
diff --git a/src/locales/zh-cn.json b/src/locales/zh-cn.json
index 5c27e4c..7883276 100644
--- a/src/locales/zh-cn.json
+++ b/src/locales/zh-cn.json
@@ -2,6 +2,7 @@
"translation": {
"profile": "关于我",
"links": "超级链接",
+ "identifier": "識別符",
"public_keys": "公钥",
"services": "服务",
"chat": "聊天",