Skip to content

Commit dbc1224

Browse files
committed
docs(README.md): add a tweet badge
1 parent e361aca commit dbc1224

File tree

10 files changed

+27
-18
lines changed

10 files changed

+27
-18
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<a href="https://github.com/0l1v3rr/github-readme-tech-stack/releases" target="_blank">
2020
<img src="https://img.shields.io/github/release/0l1v3rr/github-readme-tech-stack.svg?style=for-the-badge&logo=github&color=00B274&logoColor=D9E0EE&labelColor=343A40" alt="Version">
2121
</a>
22+
<a href="https://twitter.com/intent/tweet?text=Display%20your%20favorite%20technologies%2C%20tools%2C%20or%20the%20tech%20stack%20your%20project%20uses%20with%20these%20fully%20customizable%2C%20good-looking%20cards%20on%20your%20GitHub%20README%21&url=https://github.com/0l1v3rr/github-readme-tech-stack&hashtagsgithub,readme,cards,stats,profile,shields,react,typescript,tailwindcss" target="_blank">
23+
<img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=for-the-badge&logo=twitter&color=1c93e4&logoColor=D9E0EE&labelColor=343A40" alt="Version">
24+
</a>
2225
</div>
2326

2427
<br>

client/build/asset-manifest.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.bc85d90e.css renamed to client/build/static/css/main.23445aa9.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.bc85d90e.css.map renamed to client/build/static/css/main.23445aa9.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.d0fb1acf.js renamed to client/build/static/js/main.2e163b51.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.d0fb1acf.js.map renamed to client/build/static/js/main.2e163b51.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/components/buttons/SecondaryButton.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,19 @@ interface SecondaryButtonProps {
55
text: string;
66
icon?: IconType;
77
onClick: () => void;
8+
className?: string;
89
}
910

1011
const SecondaryButton: FC<SecondaryButtonProps> = (props) => {
1112
return (
1213
<button
1314
onClick={props.onClick}
1415
type="button"
15-
className="text-gh-text flex items-center gap-3
16+
className={`text-gh-text flex items-center gap-3
1617
bg-gh-button border border-solid border-gh-button-border
1718
py-1 px-3 rounded-md hover:border-gh-button-border-active
18-
transition-all duration-150 hover:bg-gh-button-active text-sm"
19+
transition-all duration-150 hover:bg-gh-button-active
20+
text-sm ${props.className}`}
1921
>
2022
{props.icon && <props.icon />}
2123
{props.text}

client/src/sections/Options.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const Options: FC<OptionsProps> = (props) => {
194194

195195
<div className="w-full h-[.8px] bg-gh-border mx-auto" />
196196

197-
<div className="flex items-stretch gap-2">
197+
<div className="flex items-stretch gap-3">
198198
<GreenButton
199199
icon={IoHammerOutline}
200200
onClick={() => {
@@ -216,7 +216,11 @@ const Options: FC<OptionsProps> = (props) => {
216216
text="Generate"
217217
/>
218218

219-
<SecondaryButton onClick={() => reset()} text="Reset" />
219+
<SecondaryButton
220+
onClick={() => reset()}
221+
text="Reset"
222+
className="text-red-500 font-semibold"
223+
/>
220224
</div>
221225
</div>
222226
</section>

0 commit comments

Comments
 (0)