mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
40 lines
966 B
TypeScript
40 lines
966 B
TypeScript
import React, { Component } from 'react';
|
|
import { COMPANY_NAME, COMPANY_URL } from '@/src/lib/constants';
|
|
import Typography from '@mui/material/Typography';
|
|
import MuiLink from '@mui/material/Link';
|
|
import styles from './styles.module.css'
|
|
import Link from 'next/link'
|
|
import styled from '@emotion/styled'
|
|
|
|
|
|
export default class Copyright extends Component {
|
|
render() {
|
|
return (
|
|
(<CopyStyled>
|
|
<div className="copyright">© {new Date().getFullYear()} {' '}
|
|
<Link href={COMPANY_URL}>
|
|
{COMPANY_NAME}
|
|
</Link>{' '}
|
|
<span>All Rights Reserved.</span>
|
|
</div>
|
|
</CopyStyled>)
|
|
);
|
|
}
|
|
}
|
|
|
|
const CopyStyled = styled.div`
|
|
.copyright {
|
|
background: #4c5c3f;
|
|
font-size:.80em;
|
|
text-transform: uppercase;
|
|
color:#FFF;
|
|
display: block;
|
|
width:100%;
|
|
text-align:center;
|
|
|
|
a {
|
|
color:#FFF;
|
|
text-decoration:none;
|
|
}
|
|
}
|
|
` |