File size: 966 Bytes
babeaf6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * src/components/Footer/index.jsx
 * Footer message and public links
 * 
 * created by Lynchee on 7/16/23
 */

import React from 'react';
import { FaGithub, FaDiscord, FaTwitter } from 'react-icons/fa';
import './style.css';

const Footer = () => (
    <footer>
        <div className="rounded-social-buttons">
            <a className="social-button github" href="https://github.com/Shaunwei/RealChar" target="_blank" rel="noreferrer"><FaGithub /></a>
            <a className="social-button discord" href="https://discord.gg/e4AYNnFg2F" target="_blank" rel="noreferrer"><FaDiscord /></a>
            <a className="social-button twitter" href="https://twitter.com/agishaun" target="_blank" rel="noreferrer"><FaTwitter /></a>
        </div>
        <p className="copyright">Copyright © 2023 RealChar. All rights reserved. Any AI character's statements are fictional and don't represent actual beliefs or opinions.</p>
    </footer>
);

export default Footer;