Skip to content

Commit

Permalink
remove FA icon
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmarcia committed Sep 20, 2023
1 parent 1a92b94 commit 5b5f3c6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
31 changes: 20 additions & 11 deletions components/AddYourProjectButton.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faPlus } from '@fortawesome/free-solid-svg-icons';
import { faPlus } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";

export const AddYourProjectButton = () => {
return (
<div style={{paddingLeft: 1202}}>
<div style={{ paddingLeft: 1202 }}>
{/* <div style={{color: 'white', fontSize: 16, fontFamily: 'Inter', fontWeight: '600', lineHeight: 24, wordWrap: 'break-word'}}> */}
<a
className=""
href="https://github.com/rubyforgood/happycommits"
target="_blank"
rel="noopener noreferrer"
style={{height: 40, paddingLeft: 24, paddingRight: 24, paddingTop: 8, paddingBottom: 8, background: '#604FDD', borderRadius: 8, justifyContent: 'center', alignItems: 'center', gap: 10, display: 'inline-flex'}}
style={{
height: 40,
paddingLeft: 24,
paddingRight: 24,
paddingTop: 8,
paddingBottom: 8,
background: "#604FDD",
borderRadius: 8,
justifyContent: "center",
alignItems: "center",
gap: 10,
display: "inline-flex"
}}
>
<div style={{color: 'white', fontFamily: 'Inter', fontWeight: '600'}}>
<FontAwesomeIcon icon={faPlus} className="mr-2" />&nbsp;&nbsp;
Add your project
</div>
<div style={{ color: "white", fontFamily: "Inter", fontWeight: "600" }}>
Add your project
</div>
</a>

</div>

</div>
);
};
3 changes: 1 addition & 2 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ export const Navbar = () => {
}}
>
<div style={{ color: "white", fontFamily: "Inter", fontWeight: "600" }}>
<FontAwesomeIcon icon={faPlus} className="mr-2" />
&nbsp; Add your project
Add your project
</div>
</a>
</div>
Expand Down

0 comments on commit 5b5f3c6

Please sign in to comment.