-
- {{ t("hello") }}
-
+
+
+
+
{{ t("contacts") }}
+
+
+
@@ -15,6 +25,11 @@
import Navbar from "@/components/navbar/Navbar.vue";
import { useI18n } from "vue-i18n";
import locale from "./locale.json";
+ import ContactLink from "./ContactLink.vue";
+
+ import mail_icon from "@/assets/icons/mail.svg";
+ import telegram_icon from "@/assets/icons/telegram.svg";
+ import linkedin_icon from "@/assets/icons/linkedin.svg";
const { t } = useI18n({ messages: locale });
\ No newline at end of file
diff --git a/src/views/contacts/locale.json b/src/views/contacts/locale.json
index 6aae77e..c81f129 100644
--- a/src/views/contacts/locale.json
+++ b/src/views/contacts/locale.json
@@ -1,8 +1,8 @@
{
"en": {
- "hello": "Hello"
+ "contacts": "Contacts"
},
"it": {
- "hello": "Ciao"
+ "contacts": "Contatti"
}
}
\ No newline at end of file