diff --git a/components/Footer.tsx b/components/Footer.tsx index f9ed164..d2626eb 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -13,6 +13,7 @@ export default function Footer() { + diff --git a/components/social-icons/icons.tsx b/components/social-icons/icons.tsx index af2416b..8f8256a 100644 --- a/components/social-icons/icons.tsx +++ b/components/social-icons/icons.tsx @@ -44,6 +44,14 @@ export function Twitter(svgProps: SVGProps) { ) } +export function X(svgProps: SVGProps) { + return ( + + + + ) +} + export function Youtube(svgProps: SVGProps) { return ( diff --git a/components/social-icons/index.tsx b/components/social-icons/index.tsx index 718f68e..6a2d863 100644 --- a/components/social-icons/index.tsx +++ b/components/social-icons/index.tsx @@ -5,6 +5,7 @@ import { Youtube, Linkedin, Twitter, + X, Mastodon, Threads, Instagram, @@ -17,6 +18,7 @@ const components = { youtube: Youtube, linkedin: Linkedin, twitter: Twitter, + x: X, mastodon: Mastodon, threads: Threads, instagram: Instagram, diff --git a/data/siteMetadata.js b/data/siteMetadata.js index b21cbf3..4a079dc 100644 --- a/data/siteMetadata.js +++ b/data/siteMetadata.js @@ -13,7 +13,8 @@ const siteMetadata = { mastodon: 'https://mastodon.social/@mastodonuser', email: 'address@yoursite.com', github: 'https://github.com', - twitter: 'https://twitter.com/Twitter', + x: 'https://twitter.com/x', + // twitter: 'https://twitter.com/Twitter', facebook: 'https://facebook.com', youtube: 'https://youtube.com', linkedin: 'https://www.linkedin.com', diff --git a/layouts/AuthorLayout.tsx b/layouts/AuthorLayout.tsx index 004b8f1..9b3d06f 100644 --- a/layouts/AuthorLayout.tsx +++ b/layouts/AuthorLayout.tsx @@ -37,7 +37,7 @@ export default function AuthorLayout({ children, content }: Props) { - +