Some checks failed
Frontend CI / Lint and Build Frontend (pull_request) Failing after 21s
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import './Footer.css';
|
|
import { useLanguage } from '../hooks/useLanguage';
|
|
|
|
const Footer = () => {
|
|
const { t } = useLanguage();
|
|
return (
|
|
<footer className="footer">
|
|
<div className="footer-container">
|
|
<div className="footer-content">
|
|
<div className="footer-section">
|
|
<h3>Phun</h3>
|
|
<p>{t('footerDescription')}</p>
|
|
</div>
|
|
<div className="footer-section">
|
|
<h4>Links</h4>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/about">About</a></li>
|
|
<li><a href="/contact">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
<div className="footer-section">
|
|
<h4>Connect</h4>
|
|
<ul>
|
|
<li><a href="https://github.com" target="_blank" rel="noopener noreferrer">GitHub</a></li>
|
|
<li><a href="https://twitter.com" target="_blank" rel="noopener noreferrer">Twitter</a></li>
|
|
<li><a href="https://linkedin.com" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div className="footer-bottom">
|
|
<p>© 2024 Phun. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|