1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 04:30:01 +02:00

Add links for discord, twitter and youtubeg

This commit is contained in:
Kamran Ahmed
2024-06-28 12:18:33 +01:00
parent d9cdc95a79
commit 2c373c7574
3 changed files with 18 additions and 0 deletions

6
src/pages/discord.astro Normal file
View File

@@ -0,0 +1,6 @@
---
export const prerender = false;
const discordLink = 'https://discord.gg/cJpEt5Qbwa';
return Astro.redirect(discordLink);
---

6
src/pages/twitter.astro Normal file
View File

@@ -0,0 +1,6 @@
---
export const prerender = false;
const twitterLink = 'https://twitter.com/roadmapsh';
return Astro.redirect(twitterLink);
---

6
src/pages/youtube.astro Normal file
View File

@@ -0,0 +1,6 @@
---
export const prerender = false;
const youtubeLink = 'https://youtube.com/@roadmapsh';
return Astro.redirect(youtubeLink);
---