You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
722 B

import React from 'react';
import {Link} from "react-router-dom";
const Footer = () => {
return (
<footer className="bg-gray-800 text-white py-4">
<div className="container mx-auto text-center">
<p>© 2025 Digital Farmer's Market. All Rights Reserved.</p>
<div className="flex justify-center space-x-4 mt-2">
<Link to="/about" className="hover:text-gray-400">About Us</Link>
<a href="#" className="hover:text-gray-400">Contact</a>
<a href="#" className="hover:text-gray-400">Privacy Policy</a>
</div>
</div>
</footer>
);
};
export default Footer;