-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
29 lines (25 loc) · 1.5 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const {
white,
bold,
blueBright
} = require("colorette");
const work = white(`Staff Software Engineer @ ${blueBright('10Pearls')}`)
const twitter = blueBright('https://twitter.com/mnomanmemon')
const linkedIn = blueBright('https://linkedin.com/in/mnomanmemon')
const github = blueBright('https://github.com/mnomanmemon')
const stackoverflow = blueBright('https://stackoverflow.com/story/mnomanmemon')
const medium = blueBright('https://medium.com/@mnomanmemon')
const web = blueBright('https://imnoman.com')
const npx = white('npx mnoman')
const newline = '\n'
const heading = `${white(' Muhammad Noman /')} ${blueBright('mnoman')}`
const working = `${white(bold(' Work:'))} ${work}`
const linkedining = `${white(bold(' LinkedIn:'))} ${linkedIn}`
const twittering = `${white(bold(' Twitter:'))} ${twitter}`
const githubing = `${white(bold(' GitHub:'))} ${github}`
const stackoverflowing = `${white(bold(' Stackoverflow:'))} ${stackoverflow}`;
const mediuming = `${white(bold(' Medium:'))} ${medium}`;
const webing = `${white(bold(' Portfolio:'))} ${web}`;
const carding = `${white(bold(' Card:'))} ${npx}`
let output = `${newline} ${newline} ${heading} ${newline} ${newline} ${working} ${newline} ${webing} ${newline} ${mediuming} ${newline} ${twittering} ${newline} ${githubing} ${newline} ${linkedining} ${newline} ${stackoverflowing} ${newline} ${newline} ${carding} ${newline} ${newline}`;
console.log(output)