Skip to content
Snippets Groups Projects
maintenance.js 370 B
Newer Older
import React from 'react'
import styled from 'styled-components'

export default function Maintenance() {
  return (
    <MaintenanceDiv>
      Estamos em manuntenção. Em breve voltaremos!
    </MaintenanceDiv>
  )
}

const MaintenanceDiv = styled.div`
  z-index: 1000;
  position: fixed;
  color:white;
  background-color: red; 
  text-align: center;
  width: 100%;
`