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 (

{`© ${new Date().getFullYear()} ShiftSync`}

) }