22 lines
599 B
TypeScript
22 lines
599 B
TypeScript
import React from 'react';
|
||
import './Footer.scss';
|
||
import content from '../../data/content.json';
|
||
|
||
const Footer: React.FC = () => {
|
||
return (
|
||
<footer className="footer">
|
||
<div className="container">
|
||
<p>© {new Date().getFullYear()} CampFire</p>
|
||
<div className="footer-links">
|
||
<a href={content.contacts.discord}>Discord</a>
|
||
<a href={content.contacts.telegram}>Telegram</a>
|
||
<a href={content.contacts.git}>Git</a>
|
||
<a href={content.contacts.forum}>Форум</a>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
);
|
||
};
|
||
|
||
export default Footer;
|