diff --git a/src/App.jsx b/src/App.jsx
index ecea54a..59594c4 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -12,6 +12,7 @@ import {
import Crypto from './components/Crypto/Crypto';
import CryptoGalleryContainer from './components/CryptoGallery/CryptoGalleryContainer'
+import Footer from './components/Footer/Footer';
function App() {
@@ -22,17 +23,17 @@ function App() {
return (
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
);
}
diff --git a/src/components/CryptoGallery/CryptoGalleryItem.jsx b/src/components/CryptoGallery/CryptoGalleryItem.jsx
index f50d24d..9b15bc4 100644
--- a/src/components/CryptoGallery/CryptoGalleryItem.jsx
+++ b/src/components/CryptoGallery/CryptoGalleryItem.jsx
@@ -49,10 +49,9 @@ const CryptoGalleryItem = ({CryptoStyles, data, cryptoPrices, dates, index, cryp
lg={4}
md={6}
sm={12}
- onClick={() => {if (!loading) history.push(`/crypto/${data.id}`)}}
style={{cursor: loading ? 'initial' : 'clicker'}}
>
-
+ {if (!loading) history.push(`/crypto/${data.id}`)}}>
diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx
new file mode 100644
index 0000000..5aa39f9
--- /dev/null
+++ b/src/components/Footer/Footer.jsx
@@ -0,0 +1,50 @@
+import React from 'react'
+
+/**
+ *
+ * .made-with-love a {
+ color: #f7f7f7
+ }
+
+ .made-with-love {
+ color:rgb(185, 185, 185);
+ margin-top: auto;
+ width: 100%;
+
+ padding-top: 5vh;
+ padding-bottom: 5vh;
+ padding-left: 3vw;
+
+ box-sizing: border-box;
+ }
+
+.made-with-love.dark-mode-component {
+
+ background-color: $main-color-dark;
+}
+ */
+
+const Footer = () => {
+ return (
+
+ )
+}
+
+export default Footer