BlogData.show_Blog: true in src/Name.js)react-js framework of javascriptπ₯.src/Name.js file which contains the complete information about the user. The file looks something like belowconst greeting = {
    title: "Hi, I'm Your Name",
    logo_name: "Name",
    logo_img_show: false, // if true than show image(logo) in home page instant of text(logo)
    logo_img: "https://master-portfolio.js.org/src/assets/img/mplogo.png",
    full_name: "your name",
    email: "email id",
    subTitle:
    "I'm a student pursuing {Course} in {department} from {university}. I'm a passionate learner who's always willing to learn and work across technologies and domains. I love to explore new technologies and leverage. Apart from that I also love to guide and mentor newbies. I'm currently into Web Development and working on my MERN Website",
    Programming: true,  // if true, Show 'Programming' section in home page, if false than not show
    developer: true,  // if true, Show 'Full Stack Development' section in home page, if false than not show
    designer: true,  // if true, Show 'designer' section in home page, if false than not show
    cloud_infra_architecture:true,  // if true, Show 'cloud_infra_architecture' section in home page, if false than not show
    data_Science: true,  // if true, Show 'data_Science' section in home page, if false than not show
    ml_ai: true,  // if true, Show 'ml_ai' section in home page, if false than not show
    Robotic: true,  // if true, Show 'Robotic' section in home page, if false than not show
    gamedev: true,  // if true, Show 'gamedev' section in home page, if false than not show
};
const BlogData = {
    // this show your dev.to blog in your Portfolio blog
    show_Blog: true,  // if true it Show your DEV.to article in Blog Section, if false than Blog Section(nav) convert to skill Section(nav).
    devto_username: "vimal"
};
const socialMedia = {
    facebook: "Your facebook link",
    twitter: "Your twitter link",
    instagram: "Your instagram link",
    github: "Your github link",
    gitlab: "Your gitlab link",
    devto: "Your devto link",
    mailto: "mailto:Your mail"
};
const about = {
    School: "Your School Name",
    College: "Your College Name",
    university: "Your university Name",
    Home: "Your Home city"
};
const projects = [
{
    id: "1",
    name: "project 1",
    Description: "this is Description",
    Code_Link: "this is code link",
    Live_link: "this is Live link",
    tool_used: "html,css,js", 
    img: "https://master-portfolio.js.org/src/assets/img/mplogo.png"
},
.........
]

git clone https://github.com/{your github username}/{repository name}npm installhttps://{your github username}.github.io/{repository name} in package.jsonsrc/Name.jsnpm start, it will open the website locally on your browser.npm run deploy to build and create a branch called gh-pages. It will push the build files to that branch.https://{your github username}.github.io/{repository name}.
src/Name.js
src/Name.jsPlease see our contributing.md.