Skip to main content

Contact.js

Raw Code

This is the raw code which will be downloaded at time of building the portfolio.

info

Portfolio Generator will ask you for data which can replace the variables. If you don't enter correct data, then you can change variables manually also.

Data/Contact.js
const contact_links = {
twitter: "[[twitterLink]]",
instagram: "[[instagramLink]]",
github: "[[githubLink]]",
linkedin: "[[linkedinLink]]",
phone: "[[phone]]",
email: "[[email]]",
website: "[[website]]",
};

export default contact_links;

Variables

caution

You can refer this table if you have any kind of confusion regarding adding data into variables. Remember variables are very sensitive respect to their types and data format. Data should be added in the instructed format only.

VariableDescriptionTypeConstraintExample
twitterLinkTwitter Profile LinkURLMust be a valid URLhttps://twitter.com/cybersaksham
instaLinkInsta Profile LinkURLMust be a valid URLhttps://www.instagram.com/saksham.1908
githubLinkGithub Profile LinkURLMust be a valid URLhttps://github.com/cybersaksham
linkedinLinkLinkedin Profile LinkURLMust be a valid URLhttps://www.linkedin.com/in/cybersaksham/
phonePhone NoTextLength 1 to 15
emailEmail AddressTextMust be a valid Emailsaksham.bindal2004@gmail.com
websiteWebsite LinkURLMust be a valid URLhttps://www.cybersaksham.co.in

Final Code Example

After adding the data, the code will look like:

Data/Contact.js
const contact_links = {
twitter: "https://twitter.com/cybersaksham",
instagram: "https://www.instagram.com/saksham.1908",
github: "https://github.com/cybersaksham",
linkedin: "https://www.linkedin.com/in/cybersaksham/",
phone: "+91 **********",
email: "saksham.bindal2004@gmail.com",
website: "https://www.cybersaksham.co.in",
};

export default contact_links;
danger
  • Above data is dummy data which will be produced when you run portfolio-project with --dummy option.
  • This data is the personal data of Saksham Bindal
  • This data is only for testing purpose. You are not allowed to misuse the data.
  • You are not allowed to distribute or publish this data.