// @flow import React from 'react'; import styled from 'styled-components'; import { FlexCol } from 'src/components/globals'; import { Tagline, Copy } from 'src/views/pages/style'; import ViewSegment from 'src/components/themedSection'; import { MEDIA_BREAK } from 'src/components/layout'; const Emoji = styled.div` font-size: 3em; text-align: center; line-height: 1.5em; margin-bottom: 0.25em; `; const Wrapper = styled(FlexCol)` margin: 0 auto; text-align: center; `; const Text = styled(Copy)` font-size: 20px; line-height: 1.3; font-weight: 500; opacity: 0.95; margin: 0 auto; max-width: none; a { text-decoration: underline; } @media (max-width: ${MEDIA_BREAK}px) { font-size: 20px; text-align: center; } `; const MaintenanceDowntime = () => { return ( 🛠 Spectrum is currently undergoing maintenance We’ll be back soon, check{' '} @withspectrum on Twitter {' '} for updates! ); }; export default MaintenanceDowntime;