Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
nunocoracao committed Feb 24, 2023
1 parent fd33426 commit 1d5c6b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ import logo from './baby_moby.png';
import './App.css';
import Confetti from './Confetti';

const shareMessage = 'I just published an article on how you can share content to Twitter from the client website'
const shareMessage = 'I just ran my first container using Docker'
const shareLink = 'https://docker.com/'

const App = () => {
return (
<div className="App">
<Confetti/>
<Confetti />
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 style={{ marginBottom: "0px" }}>
Congratulations!!!
</h1>
<p style={{ marginTop: "10px", marginBottom: "50px" }}>
You just run your first container.
You ran your first container.
</p>
<div>
<a target="_blank" href={"https://twitter.com/intent/tweet?text=" + shareMessage + "&url=" + shareLink} class="fa fa-twitter" rel="noopener noreferrer"></a>
<a target="_blank" href={"https://www.linkedin.com/sharing/share-offsite/?url=" + shareLink} class="fa fa-linkedin" rel="noopener noreferrer"></a>
<a target="_blank" href={"https://reddit.com/submit?title=" + shareMessage + "&url=" + shareLink} class="fa fa-reddit" rel="noopener noreferrer"></a>
<a target="_blank" href={"https://twitter.com/intent/tweet?text=" + shareMessage + "&url=" + shareLink} class="fa fa-twitter" rel="noopener noreferrer"> </a>
<a target="_blank" href={"https://www.linkedin.com/sharing/share-offsite/?url=" + shareLink} class="fa fa-linkedin" rel="noopener noreferrer"> </a>
<a target="_blank" href={"https://reddit.com/submit?title=" + shareMessage + "&url=" + shareLink} class="fa fa-reddit" rel="noopener noreferrer"> </a>
</div>
</header>
</div>
Expand Down

0 comments on commit 1d5c6b5

Please sign in to comment.