Compare commits

...

6 Commits

Author SHA1 Message Date
allcontributors[bot] b6517bdbee docs: update .all-contributorsrc [skip ci] 2020-09-30 09:01:50 +00:00
allcontributors[bot] 6378434988 docs: update README.md [skip ci] 2020-09-30 09:01:49 +00:00
Rahul Jain 19a511d94f Merge pull request #138 from rahuldkjain/all-contributors/add-antonkomarev
docs: add antonkomarev as a contributor
2020-09-27 18:05:17 +05:30
zolostays 06b6537795 [fix]: markdown formatting 2020-09-27 17:57:07 +05:30
allcontributors[bot] c345c204d1 docs: update .all-contributorsrc [skip ci] 2020-09-25 16:32:23 +00:00
allcontributors[bot] c963e03c28 docs: update README.md [skip ci] 2020-09-25 16:32:22 +00:00
5 changed files with 41 additions and 22 deletions
+18
View File
@@ -13,6 +13,24 @@
"contributions": [
"code"
]
},
{
"login": "antonkomarev",
"name": "Anton Komarev",
"avatar_url": "https://avatars0.githubusercontent.com/u/1849174?v=4",
"profile": "https://komarev.com",
"contributions": [
"plugin"
]
},
{
"login": "utsav00",
"name": "Utsav",
"avatar_url": "https://avatars2.githubusercontent.com/u/39943143?v=4",
"profile": "https://github.com/utsav00",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
+3 -1
View File
@@ -159,7 +159,7 @@ Please read [`CONTRIBUTING`](CONTRIBUTING.md) for details on our [`CODE OF CONDU
## Contributors ✨
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -169,6 +169,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<table>
<tr>
<td align="center"><a href="https://github.com/sarbikbetal"><img src="https://avatars2.githubusercontent.com/u/41508422?v=4" width="100px;" alt=""/><br /><sub><b>Sarbik Betal</b></sub></a><br /><a href="https://github.com/rahuldkjain/github-profile-readme-generator/commits?author=sarbikbetal" title="Code">💻</a></td>
<td align="center"><a href="https://komarev.com"><img src="https://avatars0.githubusercontent.com/u/1849174?v=4" width="100px;" alt=""/><br /><sub><b>Anton Komarev</b></sub></a><br /><a href="#plugin-antonkomarev" title="Plugin/utility libraries">🔌</a></td>
<td align="center"><a href="https://github.com/utsav00"><img src="https://avatars2.githubusercontent.com/u/39943143?v=4" width="100px;" alt=""/><br /><sub><b>Utsav</b></sub></a><br /><a href="https://github.com/rahuldkjain/github-profile-readme-generator/commits?author=utsav00" title="Code">💻</a></td>
</tr>
</table>
+17 -18
View File
@@ -32,7 +32,6 @@ const Markdown = props => {
<>
{`<h3 align="left">${props.label}</h3>`}
<br />
<br />
</>
)
}
@@ -274,22 +273,6 @@ const Markdown = props => {
}
/>
</>
<>
<DisplaySkills skills={props.skills} />
</>
<>
<DisplayTopLanguages
show={props.data.topLanguages}
showStats={props.data.githubStats}
github={props.social.github}
/>
</>
<>
<GitHubStats
show={props.data.githubStats}
github={props.social.github}
/>
</>
{isSocial(props.social) ? `<p align="left">` : ""} <br />
<>
<SectionTitle label="Connect with me:" />
@@ -441,7 +424,23 @@ const Markdown = props => {
username={props.social.rssurl}
/>
</>
{isSocial(props.social) ? `</p>` : ""}
{isSocial(props.social) ? <>{`</p>`}<br/><br/></> : ""}
<>
<DisplaySkills skills={props.skills} />
</>
<>
<DisplayTopLanguages
show={props.data.topLanguages}
showStats={props.data.githubStats}
github={props.social.github}
/>
</>
<>
<GitHubStats
show={props.data.githubStats}
github={props.social.github}
/>
</>
</div>
)
}
+2 -2
View File
@@ -268,7 +268,7 @@ const MarkdownPreview = props => {
listSkills.push(
<a href={skillWebsites[skill]} target="_blank">
<img
className="my-4 mx-4 h-6 w-6 sm:h-10 sm:w-10"
className="mb-4 mr-4 h-6 w-6 sm:h-10 sm:w-10"
key={skill}
src={icons[skill]}
alt={skill}
@@ -295,6 +295,7 @@ const MarkdownPreview = props => {
github={props.social.github}
/>
<WorkPreview work={props} />
<SocialPreview social={props.social} />
<SkillsPreview skills={props.skills} />
<div className="block sm:flex sm:justify-center sm:items-start">
<TopLanguagesPreview
@@ -306,7 +307,6 @@ const MarkdownPreview = props => {
github={props.social.github}
/>
</div>
<SocialPreview social={props.social} />
</div>
)
}
+1 -1
View File
@@ -160,7 +160,7 @@ const Work = props => {
/>
<input
id="funFact"
placeholder="Chai over Coffee"
placeholder="I think I am funny"
className="outline-none placeholder-gray-700 mr-8 sm:mr-0 w-full sm:w-1/3 border-t-0 border-l-0 border-r-0 border solid border-gray-900 py-1 px-2 focus:border-blue-700"
value={props.data.funFact}
onChange={event => props.handleDataChange("funFact", event)}