Untitled

 avatar
unknown
plain_text
8 months ago
936 B
3
Indexable
import "bootstrap/dist/css/bootstrap.css";
import "../styles.css";
import { BsInstagram } from "react-icons/bs";
import { BsFacebook } from "react-icons/bs";
import { BsTwitter } from "react-icons/bs";
import { BsYoutube } from "react-icons/bs";

function Footer() {
  return (
    <div class="fixed-bottom footer-container">
      <div class="line">
        <div class="footer-text d-inline-block">
          Get connected with us on social networks:
          <div class="space-between icons">
            <BsInstagram size="20" />
            <BsFacebook size="20" />
            <BsTwitter size="20" />
            <BsYoutube size="20" />
          </div>
        </div>
      </div>
      <div class="others d-flex space-between">
        <div class="footer-text">Company</div>
        <div class="footer-text">Useful Links</div>
        <div class="footer-text">Contact</div>
      </div>
    </div>
  );
}

export default Footer;
Editor is loading...
Leave a Comment