Files
UI-examples/Google (Gemini 3.1)/src/components/Footer.jsx
2026-03-10 20:28:48 +01:00

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;