diff --git a/public/index.html b/public/index.html index 1fd152c..ae30837 100644 --- a/public/index.html +++ b/public/index.html @@ -5,11 +5,11 @@ - + - Welcome to Docker diff --git a/src/App.css b/src/App.css index 06c54d2..fb0a356 100644 --- a/src/App.css +++ b/src/App.css @@ -22,8 +22,7 @@ color: #61dafb; } - -.fa { +.fa-brands { padding: 20px; font-size: 30px; width: 50px; @@ -32,25 +31,24 @@ text-decoration: none; } -.fa:hover { +.fa-brands:hover { opacity: 0.7; } - /* Twitter */ -.fa-twitter { - background: #55ACEE; +.fa-x-twitter { + background: #55acee; color: white; } /* Linkedin */ .fa-linkedin { - background: #55ACEE; + background: #55acee; color: white; } /* Reddit */ .fa-reddit { - background: #55ACEE; + background: #55acee; color: white; -} \ No newline at end of file +} diff --git a/src/App.js b/src/App.js index 299f850..6dbe501 100644 --- a/src/App.js +++ b/src/App.js @@ -1,28 +1,59 @@ -import './App.css'; -import Confetti from './Confetti'; +import "./App.css"; +import Confetti from "./Confetti"; -const shareMessage = 'I just ran my first container using Docker' -const shareLink = 'https://docker.com/' +const shareMessage = "I just ran my first container using Docker"; +const shareLink = "https://docker.com/"; const App = () => { return (
-

- Congratulations!!! -

+

Congratulations!!!

You ran your first container.

- - - + + {" "} + + + {" "} + + + {" "} +
); -} +}; export default App;