import { IconWebsolute } from '@websolutespa/bom-mixer-icons'; import styled from 'styled-components'; import { Button, Container, Flex, Link, Text, UIComponentProps, getCssResponsive } from '../../components'; export type FooterProps = UIComponentProps<{ }>; const FooterContainer = styled.footer` display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; padding: 2rem 0; background: var(--color-neutral-900); color: var(--color-neutral-100); ${props => getCssResponsive(props)} `; export const Footer: React.FC = (props: FooterProps) => { function getYear() { return new Date().getFullYear(); } return ( ©{getYear()} websolute spa ); };