24 lines
No EOL
467 B
JavaScript
24 lines
No EOL
467 B
JavaScript
import React from 'react';
|
|
import styled from '@emotion/styled';
|
|
|
|
const FooterContainer = styled('div')`
|
|
padding-left: 10px;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
flex-shrink: 0;
|
|
height: 30px;
|
|
padding-top: 6px;
|
|
background: #585858;
|
|
color: white;
|
|
font-family: "WDXL Lubrifont TC";
|
|
`;
|
|
|
|
export const Footer = () => {
|
|
return (
|
|
<FooterContainer>
|
|
<p>{`© ${new Date().getFullYear()} ShiftSync`}</p>
|
|
</FooterContainer>
|
|
)
|
|
} |