This repository has no description
1// src/components/Footer/Footer.jsx
2import React from 'react';
3import { Link } from 'react-router-dom';
4import './Footer.css';
5
6const Footer = () => {
7 return (
8 <footer className="footer">
9 <div className="footer-container">
10 {/* Important Links */}
11 <div className="footer-links">
12 <Link to="/newsletter">Newsletter</Link>
13 <Link to="/privacy">Privacy Policy</Link>
14 <Link to="/terms">Terms of Service</Link>
15 <a
16 href="https://bsky.app/profile/dame.is"
17 target="_blank"
18 rel="noopener noreferrer"
19 className="credit-link-anchor"
20 >
21 Made by @dame.is
22 </a>
23 <Link to="/zen" className="zen-link">Zen</Link>
24 </div>
25 </div>
26 </footer>
27 );
28};
29
30export default Footer;