1   using System;
 2   
 3   // namespace can't start with a number :(
 4   namespace x753network
 5   {
 6      public partial class MyWebsite
 7      {
 8         public static void UsefulLinks()
 9         {
10            // Link to my GitHub
11            System.Diagnostics.Process.Start("https://github.com/x753");

12            

13            // Link to my Patreon
14            System.Diagnostics.Process.Start("https://www.patreon.com/x753");

15            
16            // Link to my Discord Server
17            System.Diagnostics.Process.Start("https://discord.gg/fGSneSe");

18         }
19      }
20   }
21