File size: 1,932 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React from "react";
import "./Footer.scss";
import { faHeart } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import tmdb from "../../Assets/tmdb.png";
import github from "../../Assets/github.png";
import Thanos from "react-thanos";

const Footer = () => {
  return (
    <div className="footer">

      <div className="footer__container">

        <div className="footer__start">

          <Thanos

            onSnap={() => console.log("I love you 3000! Decimate...")}

            onSnapReverse={() => console.log("Avengers assemble!")}

          />



          <h1

            className="footer__text footer__text--1"

            onClick={() => window.open(`https://shivamaima.com/`, "_blank")}

          >

            By <span className="footer__link">Shivam Aima</span>

          </h1>

        </div>



        <div className="footer__center">

          <img

            src={tmdb}

            alt="tmdb"

            className="footer__logo-tmdb"

            onClick={() =>

              window.open(` https://www.themoviedb.org/en`, "_blank")

            }

          />



          <h1 className="footer__text footer__text--2">

            Copyright©2019, <span className="react"> ReactJS is

            <FontAwesomeIcon

              icon={faHeart}

              className="footer__icon-heart-o footer__icon-heart-off"

              aria-hidden="true"

            /></span>

          </h1>

        </div>



        <div

          className="footer__end"

          onClick={() =>

            window.open(`https://github.com/darwin619/Netflix-Clone`, "_blank")

          }

        >

          <img src={github} alt="github" className="footer__logo-github" />



          <h1 className="footer__text footer__link">View on Github</h1>

        </div>

      </div>

    </div>
  );
};

export default Footer;