import Image from 'next/image'; import logo from 'public/assets/images/logo-primary.svg'; import styled from 'styled-components'; import { min } from 'styles/mq'; import { Flex } from 'ui'; import styles from './Logo.module.css'; const ImageWrapper = styled.div` width: 100px; ${min('laptop')} { width: 135px; } `; const LogoText = styled.h3` margin: 0; text-transform: uppercase; color: #fff; font-size: 0.85rem; font-family: 'Montserrat'; font-weight: 500; ${min('laptop')} { font-size: 1.2rem; } `; function Logo() { return ( logo Лизинговый Калькулятор ); } export default Logo;