Skip to content

CistusF/My-SNS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors