mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
27 lines
862 B
TypeScript
27 lines
862 B
TypeScript
import { AmbientLarge } from '@roleypoly/design-system/atoms/typography';
|
|
import * as React from 'react';
|
|
import { FaHeart } from 'react-icons/fa';
|
|
import { Flags } from './Flags';
|
|
import { FooterWrapper, HoverColor } from './Footer.styled';
|
|
|
|
const year = new Date().getFullYear();
|
|
|
|
export const Footer = () => (
|
|
<FooterWrapper>
|
|
<AmbientLarge>
|
|
<div>
|
|
© {year} Roleypoly – Made with{' '}
|
|
<FaHeart size={'0.8em'} color={'#fe4365'} />
|
|
in Raleigh, NC
|
|
</div>
|
|
<div>
|
|
<a href="https://discord.gg/Xj6rK3E">Discord/Support</a> –
|
|
<a href="https://patreon.com/roleypoly">Patreon</a> –
|
|
<a href="https://github.com/roleypoly">GitHub</a>
|
|
</div>
|
|
<HoverColor>
|
|
<Flags height={'1em'} />
|
|
</HoverColor>
|
|
</AmbientLarge>
|
|
</FooterWrapper>
|
|
);
|