25 lines
794 B
JavaScript
25 lines
794 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
import './Footer.css';
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<footer className="results-footer">
|
|
<div className="footer-top">
|
|
<span className="location">France</span>
|
|
<span className="location-info">Based on your past activity</span>
|
|
</div>
|
|
<div className="footer-bottom">
|
|
<div className="footer-links">
|
|
<Link to="/placeholder">Help</Link>
|
|
<Link to="/placeholder">Send feedback</Link>
|
|
<Link to="/placeholder">Privacy</Link>
|
|
<Link to="/placeholder">Terms</Link>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|