diff --git a/public/social-icons/youtube.svg b/public/social-icons/youtube.svg new file mode 100644 index 0000000..e5158ff --- /dev/null +++ b/public/social-icons/youtube.svg @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/src/content/data/navData.js b/src/content/data/navData.js index 1645a7e..ba113f3 100644 --- a/src/content/data/navData.js +++ b/src/content/data/navData.js @@ -17,11 +17,12 @@ export const navData = { title: "Community", href: "/blog/get-involved", dropdown: [ - { title: "Discord", href: "https://github.com/Vortex-Linux/"}, + { title: "Dev.io", href: "https://dev.to/vortexlinux"}, + { title: "Discord", href: "https://discord.gg/MsF24qUA5y"}, { title: "Facebook", href: "https://facebook.com"}, { title: "Instagram", href: "https://instagram.com"}, - { title: "Twitter", href: "https://x.com"}, - { title: "Dev.io", href: "https://dev.io"} + { title: "Twitter", href: "https://x.com/Vortex_Linux"}, + { title: "YouTube", href: "https://www.youtube.com/@VortexLinux"} ] }, { diff --git a/src/content/data/social-links.js b/src/content/data/social-links.js index 52ef026..5deb084 100644 --- a/src/content/data/social-links.js +++ b/src/content/data/social-links.js @@ -8,21 +8,27 @@ export const socialLinks = [ }, { name: 'Instagram', - url: 'https://discord.gg/MsF24qUA5y', + url: 'https://instagram.com', srText: 'Go to Vortex Linux\'s Instagram', svgPath: `/social-icons/instagram.svg`, }, { name: 'X', - url: 'https://github.com/Vortex-Linux/', + url: 'https://x.com/Vortex_Linux', srText: 'Go to Vortex Linux\'s X', svgPath: `/social-icons/x.svg`, }, { name: 'Dev', - url: 'https://github.com/Vortex-Linux/', + url: 'https://dev.to/vortexlinux', srText: 'Go to Vortex Linux\'s Dev.io', svgPath: `/social-icons/dev-io.svg`, + }, + { + name: 'YouTube', + url: 'https://www.youtube.com/@VortexLinux', + srText: 'Go to Vortex Linux\'s YouTube', + svgPath: `/social-icons/youtube.svg`, } // Add more social links as needed ];