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.
22 lines
526 B
22 lines
526 B
import React from "react";
|
|
|
|
const Coming = () => {
|
|
return (
|
|
<div style={{
|
|
height: 'calc(100% - 12px)', width: '100%', backgroundColor: '#fff',
|
|
display: 'flex', justifyContent: 'center', alignItems: 'center',
|
|
position: 'absolute',
|
|
}}>
|
|
<img
|
|
src='/assets/images/background/building.png'
|
|
style={{
|
|
maxHeight: 370,
|
|
maxWidth: 379,
|
|
width: '80%'
|
|
}}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Coming
|