diff --git a/src/components/Home/index.js b/src/components/Home/index.js
index d844b390..3e3a0d8b 100644
--- a/src/components/Home/index.js
+++ b/src/components/Home/index.js
@@ -14,6 +14,7 @@ import {
} from "../../icons";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import MuxPlayer from "@mux/mux-player-react";
+import { YouTubeIcon } from "../../icons/socials";
export default function Home({ recentPosts }) {
const {
@@ -189,20 +190,20 @@ export default function Home({ recentPosts }) {
diff --git a/src/icons/socials/index.js b/src/icons/socials/index.js
index 9f7c8a45..d6402805 100644
--- a/src/icons/socials/index.js
+++ b/src/icons/socials/index.js
@@ -5,3 +5,4 @@ export { XIcon } from "./x.icon";
export { XIcon2 } from "./x2.icon";
export { GithubIcon } from "./github.icon";
export { DiscordIcon2 } from "./discord2.icon";
+export { YouTubeIcon } from "./youtube.icon";
diff --git a/src/icons/socials/youtube.icon.jsx b/src/icons/socials/youtube.icon.jsx
new file mode 100644
index 00000000..1df67650
--- /dev/null
+++ b/src/icons/socials/youtube.icon.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const YouTubeIcon = () => (
+
+);
+
+export { YouTubeIcon };