From 93624c55f283b44ed303e1543120a1a042329e87 Mon Sep 17 00:00:00 2001
From: Fedor Katurov <gotham48@gmail.com>
Date: Wed, 16 Nov 2022 02:28:01 +0600
Subject: [PATCH] added linkedin

---
 components/contact/ContactInformation.vue |  8 ++++++++
 components/icons/IconsLinkedin.vue        | 15 +++++++++++++++
 constants/contacts.ts                     |  1 +
 3 files changed, 24 insertions(+)
 create mode 100644 components/icons/IconsLinkedin.vue

diff --git a/components/contact/ContactInformation.vue b/components/contact/ContactInformation.vue
index 23e27ec..35fbf29 100644
--- a/components/contact/ContactInformation.vue
+++ b/components/contact/ContactInformation.vue
@@ -12,6 +12,14 @@
       <IconsGithub :width="24" :height="24" />
     </ContactRow>
 
+    <ContactRow
+      value="Fedor Katurov"
+      :href="contacts.linkedin"
+      label="LinkedIn"
+    >
+      <IconsLinkedin :width="24" :height="24" />
+    </ContactRow>
+
     <ContactRow :value="mail" :href="`mailto:${mail}`" label="Mail">
       <IconsSend :width="24" :height="24" />
     </ContactRow>
diff --git a/components/icons/IconsLinkedin.vue b/components/icons/IconsLinkedin.vue
new file mode 100644
index 0000000..127b20a
--- /dev/null
+++ b/components/icons/IconsLinkedin.vue
@@ -0,0 +1,15 @@
+<template>
+  <svg
+    height="72"
+    viewBox="0 0 72 72"
+    width="72"
+    xmlns="http://www.w3.org/2000/svg"
+    fill="currentColor"
+  >
+    <g fill-rule="evenodd">
+      <path
+        d="M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 ZM62,62 L51.315625,62 L51.315625,43.8021149 C51.315625,38.8127542 49.4197917,36.0245323 45.4707031,36.0245323 C41.1746094,36.0245323 38.9300781,38.9261103 38.9300781,43.8021149 L38.9300781,62 L28.6333333,62 L28.6333333,27.3333333 L38.9300781,27.3333333 L38.9300781,32.0029283 C38.9300781,32.0029283 42.0260417,26.2742151 49.3825521,26.2742151 C56.7356771,26.2742151 62,30.7644705 62,40.051212 L62,62 Z M16.349349,22.7940133 C12.8420573,22.7940133 10,19.9296567 10,16.3970067 C10,12.8643566 12.8420573,10 16.349349,10 C19.8566406,10 22.6970052,12.8643566 22.6970052,16.3970067 C22.6970052,19.9296567 19.8566406,22.7940133 16.349349,22.7940133 Z M11.0325521,62 L21.769401,62 L21.769401,27.3333333 L11.0325521,27.3333333 L11.0325521,62 Z"
+      />
+    </g>
+  </svg>
+</template>
diff --git a/constants/contacts.ts b/constants/contacts.ts
index 6f9494f..c6be143 100644
--- a/constants/contacts.ts
+++ b/constants/contacts.ts
@@ -2,5 +2,6 @@ export const contacts = {
   telegram: "vv4000",
   email: "Z290aGFtNDhAZ21haWwuY29t",
   github: "muerwre",
+  linkedin: "https://www.linkedin.com/in/fedor-katurov-811aa721b/",
   location: "Pavlodar, Rep. Kazakhstan",
 } as const;