CistusF / My-SNS

Easy to share your SNS

Home Page:https://cistusf.github.io/My-SNS/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

icon

My SNS


Easy to share your SNS

version : 1.0.3

How to use?

edit script.js's configuration

const username = "Your name"; // Enter your name or nickname
const theme = "light"; // Enter theme name you want to use.
const profileSrc = "./userProfile.png"; 
/**
 * image url is allowed
 * if you want load your own profile image file from project.
 * edit profileSrc to const profileSrc = "./Yourfile.fileType";
*/
const SNS_List = [
    {
        link: "https://instagram.com/cistusf",
        type: "instagram",
        bio: "My public IG"
    },
    {
        link: "https://youtube.com/@cistusf",
        type: "youtube"
    },
    {
        link: "https://cistusf.vercel.app/",
        bio: "My Portfolio"
    }
]; // Add your SNS list

interface SNS_List {
    link: string;
    type: SNS_ListType;
    alt?: string;
}[]; // SNS List type

interface ThemeList {
    theme: string<"light","dark","blue","red","purple","dev">;
} 

And Enable GitHub Pages for main branch.

Support SNS list

If the link is not supported, it will be replaced with a default icon.

  • Discord
  • GitHub
  • Youtube
  • Facebook
  • Instagram
  • Twitter
  • Steam
  • Tik Tok

License

Font Awesome

About

Easy to share your SNS

https://cistusf.github.io/My-SNS/


Languages

Language:JavaScript 69.0%Language:CSS 26.4%Language:HTML 4.6%