source: imaps-frontend/src/pages/IMaps/components/Footer.jsx@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[d565449]1import React from "react";
2import "./Footer.css";
3import { Button } from "./Button";
[79a0317]4import logo from "../../../assets/novo_logo_nobg_cropped.png";
5import {Link} from "react-router-dom";
[d565449]6
7function Footer() {
8 return (
9 <div className="footer-container">
[79a0317]10 <div className="footer-links">
[d565449]11 <div className="footer-link-wrapper">
12 <div className="footer-link-items">
13 <h2>Contact Us</h2>
14 <a href="#">Contact</a>
15 <a href="#">Support</a>
16 </div>
17 </div>
[79a0317]18 <div className="social-media-wrap">
19
20 <div className="footer-logo">
21 <img src={logo} alt={"logo"}/>
22 </div>
23 <small className="website-rights">iMaps © {2024}</small>
[d565449]24 </div>
[79a0317]25 <div>
26 <div className="footer-link-wrapper">
27 <div className="footer-link-items">
28 <h2>Legal & Privacy</h2>
29 <Link to={"/privacy-policy"}>Privacy Policy</Link>
30 <Link to={"/terms-of-service"}>Terms Of Service</Link>
31
32 </div>
[d565449]33 </div>
34 </div>
[79a0317]35
36 </div>
37
[d565449]38 </div>
39 );
40}
41
42export default Footer;
Note: See TracBrowser for help on using the repository browser.