You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
import styled from 'styled-components/macro'
|
|
|
|
const Info = styled.p`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
`
|
|
|
|
export const UnavailableText = () => (
|
|
<Info>
|
|
The site is temporarily unavailable
|
|
<br />
|
|
El sitio está temporalmente fuera de servicio
|
|
<br />
|
|
Сайт временно не доступен
|
|
</Info>
|
|
)
|
|
|