diff --git a/components/Footer.tsx b/components/Footer.tsx
index d2626eb69..6192b4001 100644
--- a/components/Footer.tsx
+++ b/components/Footer.tsx
@@ -16,6 +16,7 @@ export default function Footer() {
+
{siteMetadata.author}
diff --git a/components/social-icons/icons.tsx b/components/social-icons/icons.tsx
index db6b8f0b2..0be8e37e6 100644
--- a/components/social-icons/icons.tsx
+++ b/components/social-icons/icons.tsx
@@ -93,3 +93,12 @@ export function Instagram(svgProps: SVGProps
) {
)
}
+
+export function Medium(svgProps: SVGProps) {
+ return (
+
+ )
+}
diff --git a/components/social-icons/index.tsx b/components/social-icons/index.tsx
index 3bb99b16d..239f55318 100644
--- a/components/social-icons/index.tsx
+++ b/components/social-icons/index.tsx
@@ -9,6 +9,7 @@ import {
Mastodon,
Threads,
Instagram,
+ Medium,
} from './icons'
const components = {
@@ -22,6 +23,7 @@ const components = {
mastodon: Mastodon,
threads: Threads,
instagram: Instagram,
+ medium: Medium,
}
type SocialIconProps = {
diff --git a/data/siteMetadata.js b/data/siteMetadata.js
index d84efa5f9..fff094ef6 100644
--- a/data/siteMetadata.js
+++ b/data/siteMetadata.js
@@ -20,6 +20,7 @@ const siteMetadata = {
linkedin: 'https://www.linkedin.com',
threads: 'https://www.threads.net',
instagram: 'https://www.instagram.com',
+ medium: 'https://medium.com',
locale: 'en-US',
// set to true if you want a navbar fixed to the top
stickyNav: false,