const CSS = styled.div` display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; h1 { font-size: 3rem; margin-bottom: 20px; } img { max-width: 100%; height: auto; margin-bottom: 20px; } @media (max-width: 768px) { h1 { font-size: 2rem; } } `; return ( <CSS> <h1>everything.dev</h1> <img src="https://ipfs.near.social/ipfs/bafkreidhy7zo33wqjxhqsv2dd6dp2wzloitaa4lmj3rzq5zvcdtp2smeaa" alt="under construction" /> </CSS> );