added linkedin b21dbe5d
Steve · 2023-02-27 22:51 3 file(s) · +11 −8
src/components/SocialList.astro +10 −7
92 92
			</a>
93 93
		</li>
94 94
		<li>
95 -
			<a class="inline-block p-2 sm:hover:text-link" href={`mailto:${SOCIAL_LINKS.email}`}>
95 +
			<a class="inline-block p-2 sm:hover:text-link" href={`mailto:${SOCIAL_LINKS.linkedin}`}>
96 96
				<svg
97 -
					class="h-6 w-6"
98 -
					aria-hidden="true"
99 -
					focusable="false"
100 97
					xmlns="http://www.w3.org/2000/svg"
98 +
					class="h-6 w-6"
99 +
					width="44"
100 +
					height="44"
101 101
					viewBox="0 0 24 24"
102 102
					stroke-width="1.5"
103 103
					stroke="currentColor"
106 106
					stroke-linejoin="round"
107 107
				>
108 108
					<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
109 -
					<rect x="3" y="5" width="18" height="14" rx="2"></rect>
110 -
					<polyline points="3 7 12 13 21 7"></polyline>
109 +
					<rect x="4" y="4" width="16" height="16" rx="2"></rect>
110 +
					<line x1="8" y1="11" x2="8" y2="16"></line>
111 +
					<line x1="8" y1="8" x2="8" y2="8.01"></line>
112 +
					<line x1="12" y1="16" x2="12" y2="11"></line>
113 +
					<path d="M16 16v-3a2 2 0 0 0 -4 0"></path>
111 114
				</svg>
112 -
				<span class="sr-only">Email</span>
115 +
				<span class="sr-only">LinkedIn</span>
113 116
			</a>
114 117
		</li>
115 118
	</ul>
src/content/post/first-post.mdx → src/content/post/my-developer-journey.md +0 −0
src/data/constants.ts +1 −1
18 18
	github: "https://github.com/stevedsimkins",
19 19
	twitter: "https://twitter.com/stevedsimkins",
20 20
  medium: "https://medium.com/@stevedsimkins",
21 -
	email: "stevedsimkins@gmail.com",
21 +
	linkedin: "https://linkedin.com/in/steve-simkins",
22 22
};